import type { IQuery } from './query.interface'; export type IQueryHandler = { execute(query: T): Promise; };