bigquery-client
Version:
A feature-rich Node.js client for Google BigQuery with support for CRUD operations, transactions, query building, and advanced features like aggregate functions, pagination, and logging.
9 lines (8 loc) • 317 B
TypeScript
import 'reflect-metadata';
declare global {
interface Reflect {
defineMetadata(metadataKey: any, metadataValue: any, target: Object): void;
getMetadata(metadataKey: any, target: Object): any;
}
}
export declare function Column(columnName?: string): (target: any, propertyKey: string) => void;