platform/angel_serialize_generator/test/models/author.d.ts
2018-05-15 15:33:57 -04:00

18 lines
344 B
TypeScript

// GENERATED CODE - DO NOT MODIFY BY HAND
interface Library {
id?: string;
collection?: LibraryCollection;
created_at?: any;
updated_at?: any;
}
interface LibraryCollection {
[key: string]: Book;
}
interface Bookmark {
id?: string;
history?: number[];
page: number;
comment?: string;
created_at?: any;
updated_at?: any;
}