20 lines
683 B
TypeScript
20 lines
683 B
TypeScript
|
import * as plugins from './smartclickhouse.plugins';
|
||
|
import { SmartClickHouseDb } from './smartclickhouse.classes.smartclickhouse';
|
||
|
|
||
|
export class TimeDataTable {
|
||
|
public static async getTable(smartClickHouseDbRefArg: SmartClickHouseDb, tableNameArg: string) {
|
||
|
const newTable = new TimeDataTable(smartClickHouseDbRefArg, tableNameArg);
|
||
|
|
||
|
// create table in clickhouse
|
||
|
smartClickHouseDbRefArg;
|
||
|
}
|
||
|
|
||
|
// INSTANCE
|
||
|
public smartClickHouseDbRef: SmartClickHouseDb;
|
||
|
public tableName: string;
|
||
|
|
||
|
constructor(smartClickHouseDbRefArg: SmartClickHouseDb,tableNameArg: string) {
|
||
|
this.smartClickHouseDbRef = smartClickHouseDbRefArg;
|
||
|
this.tableName = tableNameArg;
|
||
|
}
|
||
|
}
|