12 lines
337 B
TypeScript
12 lines
337 B
TypeScript
import { String } from '../types/DataType';
|
|
import { EntityShape } from '../types/Entity';
|
|
import { Schema as Relation } from './Relation';
|
|
declare type Relations = string[];
|
|
export interface Schema extends EntityShape {
|
|
relation: Relation;
|
|
path: String<256>;
|
|
destEntity: String<32>;
|
|
deRelations: Relations;
|
|
}
|
|
export {};
|