platform/angel_serialize_generator/test/models/author.d.ts
2018-05-13 14:02:47 -04:00

18 lines
345 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;
}