platform/angel_serialize_generator/test/models/author.d.ts

19 lines
345 B
TypeScript
Raw Normal View History

2018-03-29 19:58:36 +00:00
// GENERATED CODE - DO NOT MODIFY BY HAND
interface Library {
2018-03-30 04:16:04 +00:00
id?: string;
2018-05-13 18:02:47 +00:00
collection?: LibraryCollection;
created_at?: any;
updated_at?: any;
}
interface LibraryCollection {
[key: string]: Book;
}
interface Bookmark {
id?: string;
history?: number[];
page?: number;
comment?: string;
2018-03-30 04:16:04 +00:00
created_at?: any;
updated_at?: any;
2018-03-29 19:58:36 +00:00
}