import { QueryType } from "../Common/Type"; export interface IQuery { comment?: string; query: string; parameters?: Map; type: QueryType; }