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

12 lines
331 B
TypeScript

import { String } from '../types/DataType';
import { EntityShape } from '../types/Entity';
import { Schema as Relation } from './Relation';
declare type Actions = string[];
export interface Schema extends EntityShape {
relation: Relation;
path: String<256>;
destEntity: String<32>;
deActions: Actions;
}
export {};