8 lines
300 B
TypeScript
8 lines
300 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/EntityDesc';
|
|
export interface Schema extends EntityShape {
|
|
type: String<64>;
|
|
}
|
|
export declare const entityDesc: EntityDesc<Schema>;
|