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

11 lines
284 B
TypeScript

import { String } from '../types/DataType';
import { EntityShape } from '../types/Entity';
import { Schema as User } from './User';
export interface Schema extends EntityShape {
action: String<16>;
data: Object;
filter?: Object;
extra?: Object;
operator?: User;
}