UNPKG

yadop

Version:
10 lines (9 loc) 261 B
import { Method } from './method'; import { AttributeType } from './attributeType'; import { Yadop } from "./yadop"; export interface Entity extends Yadop { type?: string; attributes?: AttributeType[]; methods?: Method[]; requires?: string[]; }