10 lines
391 B
TypeScript
10 lines
391 B
TypeScript
import { String } from 'oak-domain/lib/types/DataType';
|
|
import { EntityShape } from 'oak-domain/lib/types/Entity';
|
|
import { Schema as WechatTemplate } from './WechatTemplate';
|
|
import { EntityDesc } from 'oak-domain/lib/types/EntityDesc';
|
|
export interface Schema extends EntityShape {
|
|
type: String<64>;
|
|
template: WechatTemplate;
|
|
}
|
|
export declare const entityDesc: EntityDesc<Schema>;
|