typeorm-extension
Version:
A library to create/drop database, simple seeding data sets, ...
9 lines (8 loc) • 302 B
TypeScript
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;
};