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

13 lines
235 B
TypeScript
Raw Normal View History

2018-03-29 19:58:36 +00:00
// GENERATED CODE - DO NOT MODIFY BY HAND
interface Book {
id: string;
author: string;
title: string;
description: string;
page_count: number;
not_models: any[];
camelCase: string;
created_at: any;
updated_at: any;
}