api-core
Version:
Model-based dynamic multi-level APIs for any provider, plus multiple consumption channels
16 lines (15 loc) • 417 B
TypeScript
import { Model } from "../edges/ModelEdge";
export interface SchoolScheme {
id: string;
name: string;
address: string;
phone: string;
}
export declare class School extends Model implements SchoolScheme {
constructor(obj: SchoolScheme);
static create(id: string, name: string, address: string, phone: string): School;
id: string;
name: string;
address: string;
phone: string;
}