UNPKG

@addapptables/microservice

Version:
10 lines (8 loc) 248 B
import { IQueryDto } from './query-dto-interface'; import { ITransferData } from '../transfer-data'; export interface IQuery<T extends IQueryDto> extends ITransferData<T> { context: string; action: string; data: T; cid?: string; }