webapi-ng2
Version:
ASP.NET Core Web API client generator for Angular 2
14 lines (12 loc) • 343 B
text/typescript
import { Attribute } from './attribute';
import { EnumValue } from './enum-value';
import { Property } from './property';
import { SchemaType } from './schema-type';
export interface Schema {
attributes?: Attribute[];
extends?: string[]
name: string;
properties?: Property[];
type: SchemaType;
values?: EnumValue[];
}