oak-general-business/lib/entities/Platform.d.ts

13 lines
387 B
TypeScript

import { String, Text } from 'oak-domain/lib/types/DataType';
import { EntityShape } from 'oak-domain/lib/types/Entity';
import { Config } from '../types/Config';
import { Style } from '../types/Style';
export interface Schema extends EntityShape {
name: String<32>;
description: Text;
config: Config;
style?: Style;
entity?: String<32>;
entityId?: String<64>;
}