UNPKG

typeorm-extension

Version:

A library to create/drop database, simple seeding data sets, ...

9 lines (8 loc) 302 B
import type { ParseOptions, ParseOutput } from 'rapiq'; import type { ObjectLiteral } from 'typeorm'; export type QueryApplyOptions<T extends ObjectLiteral = ObjectLiteral> = ParseOptions<T> & { defaultAlias?: string; }; export type QueryApplyOutput = ParseOutput & { defaultAlias?: string; };