10 lines
357 B
TypeScript
10 lines
357 B
TypeScript
import { String } from "oak-domain/lib/types/DataType";
|
|
import { EntityShape } from "oak-domain/lib/types/Entity";
|
|
import { Schema as Area } from "./Area";
|
|
import { EntityDesc } from 'oak-domain/lib/types/EntityDesc';
|
|
export interface Schema extends EntityShape {
|
|
name: String<32>;
|
|
area: Area;
|
|
}
|
|
export declare const entityDesc: EntityDesc<Schema>;
|