UNPKG

@odyssoft/tsorm

Version:
5 lines (4 loc) 283 B
import { Pool } from 'mysql2/promise'; import { SQLViewType, ViewType } from './types'; export declare function createView<T>(name: string, keys: string[], connection: Pool, schema: string): ViewType<T>; export declare const sql: <T>(name: string, keys: string[]) => SQLViewType<T>;