/*! * Copyright (C) Microsoft Corporation. All rights reserved. */ export interface ApiResponseInfo { type?: string; format?: string; } export interface ApiParameter { name: string; in: string; required: boolean; type: string; format?: string; } export interface ApiDefinition { path: string; method: string; parameters?: ApiParameter[]; responseInfo?: Record; } export interface DataSourceInfo { tableId: string; version?: string; primaryKey?: string; dataSourceType?: string; apis: Record; } export type DataSourcesInfo = Record; //# sourceMappingURL=dataSourceInfo.d.ts.map