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

11 lines
286 B
TypeScript

import { EntityShape } from '../types/Entity';
import { Schema as Relation } from './Relation';
import { Schema as Path } from './Path';
type Actions = string[];
export interface Schema extends EntityShape {
relation?: Relation;
path: Path;
deActions: Actions;
}
export {};