10 lines
299 B
TypeScript
10 lines
299 B
TypeScript
import { String, Int, Datetime, Image, Boolean, Text } from 'oak-domain/lib/types/DataType';
|
|
import { EntityShape } from 'oak-domain/lib/types/Entity';
|
|
|
|
export interface Schema extends EntityShape {
|
|
name: String<32>;
|
|
description: Text;
|
|
config: Object;
|
|
};
|
|
|
|
export type Relation = 'owner'; |