import { Column } from "./column"; export interface DataSourceSchema { dataSourceName: string; description: string; columns: Column[]; }