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

29 lines
583 B
TypeScript
Raw Normal View History

2018-12-09 22:55:52 +00:00
// GENERATED CODE - DO NOT MODIFY BY HAND
declare module 'angel_serialize_generator' {
interface Author {
id?: string;
name: string;
age: number;
2019-04-04 21:40:36 +00:00
books?: any[];
newest_book?: any;
2018-12-09 22:55:52 +00:00
created_at?: any;
updated_at?: any;
}
interface Library {
id?: string;
2019-04-04 21:40:36 +00:00
collection: LibraryCollection;
2018-12-09 22:55:52 +00:00
created_at?: any;
updated_at?: any;
}
interface LibraryCollection {
2019-04-04 21:40:36 +00:00
[key: string]: any;
2018-12-09 22:55:52 +00:00
}
interface Bookmark {
id?: string;
2019-04-04 21:40:36 +00:00
history: number[];
2018-12-09 22:55:52 +00:00
page: number;
2019-04-04 21:40:36 +00:00
comment: string;
2018-12-09 22:55:52 +00:00
created_at?: any;
updated_at?: any;
}
}