import { Base } from "./Base.js"; import { Table } from "./Table.js"; /** * 解析クラス */ export type Config = { imports: { [key: string]: string[]; }; }; export declare class Analyzer { tableName: string; line: number; base: Base; output(message: string): void; constructor(source: string); get tables(): Table[]; getByID(id: string): Table | undefined; private run; }