UNPKG

@allgemein/schema-api

Version:
9 lines (8 loc) 271 B
import { IBaseRef } from './IBaseRef'; import { IEntityRef } from './IEntityRef'; export interface ISchemaRef extends IBaseRef { name: string; getNamespace(): string; getEntityRefs(): IEntityRef[]; getEntityRefFor(value: string | Function): IEntityRef; }