20 lines
664 B
TypeScript
20 lines
664 B
TypeScript
import { String, Boolean, Text } from 'oak-domain/lib/types/DataType';
|
|
import { EntityShape } from 'oak-domain/lib/types/Entity';
|
|
import { Schema as Platform } from './Platform';
|
|
import { Config } from '../types/Config';
|
|
import { Style } from '../types/Style';
|
|
import { EntityDesc } from 'oak-domain/lib/types/EntityDesc';
|
|
export interface Schema extends EntityShape {
|
|
name: String<32>;
|
|
description?: Text;
|
|
config: Config;
|
|
platform?: Platform;
|
|
folder?: String<16>;
|
|
oldestVersion?: String<32>;
|
|
super?: Boolean;
|
|
style?: Style;
|
|
entity?: String<32>;
|
|
entityId?: String<64>;
|
|
}
|
|
export declare const entityDesc: EntityDesc<Schema>;
|