import { Analyzer, Config } from "./Analyzer.js"; import { Table } from "./Table.js"; /** * ベースクラス */ export declare class Base { ana: Analyzer; tables: Table[]; imports: { [key: string]: string[]; }; databaseClass: string; /** * コンストラクタ */ constructor(ana: Analyzer); /** * ブロックを追加 */ newTable(): Table; /** * TypeScript生成 */ ts(): string; getTableNames(): string[]; createTsFile(option: Config): string; }