oak-domain/lib/entities/RelationAuth.d.ts

9 lines
259 B
TypeScript

import { EntityShape } from '../types/Entity';
import { Schema as Relation } from './Relation';
import { Schema as Path } from './Path';
export interface Schema extends EntityShape {
sourceRelation: Relation;
path: Path;
destRelation: Relation;
}