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

11 lines
198 B
TypeScript
Raw Normal View History

2018-03-29 19:58:36 +00:00
// GENERATED CODE - DO NOT MODIFY BY HAND
interface Library {
id: string;
collection: BookCollection;
created_at: any;
updated_at: any;
}
interface BookCollection {
[key: string]: Book;
}