10 lines
342 B
TypeScript
10 lines
342 B
TypeScript
import { String } from 'oak-domain/lib/types/DataType';
|
|
import { EntityShape } from 'oak-domain/lib/types/Entity';
|
|
import { EntityDesc } from 'oak-domain/lib/types';
|
|
export interface Schema extends EntityShape {
|
|
name: String<64>;
|
|
abbr: String<32>;
|
|
wechatMpName?: String<32>;
|
|
}
|
|
export declare const entityDesc: EntityDesc<Schema>;
|