14 lines
486 B
TypeScript
14 lines
486 B
TypeScript
import { String, Text, Datetime } from 'oak-domain/lib/types/DataType';
|
|
import { EntityShape } from 'oak-domain/lib/types/Entity';
|
|
import { Schema as System } from './System';
|
|
import { EntityDesc } from 'oak-domain/lib/types/EntityDesc';
|
|
export interface Schema extends EntityShape {
|
|
system: System;
|
|
origin: String<64>;
|
|
templateName: Text;
|
|
templateCode: String<64>;
|
|
templateContent: Text;
|
|
syncAt: Datetime;
|
|
}
|
|
export declare const entityDesc: EntityDesc<Schema>;
|