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

21 lines
461 B
TypeScript
Raw Normal View History

2018-05-15 19:50:12 +00:00
/// <reference path="./book.d.ts" />
2018-03-29 19:58:36 +00:00
// GENERATED CODE - DO NOT MODIFY BY HAND
2018-11-29 19:38:34 +00:00
declare module 'angel_serialize_generator' {
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;
}
2018-05-15 19:50:12 +00:00
}