/*! * Copyright (C) Microsoft Corporation. All rights reserved. */ import type { RegenDataSourceTsContext, RegenDataSourceTsResult } from '../Types/ActionTypes.js'; /** * Regenerates TypeScript code for data sources from existing schema files. * Does not re-fetch schemas from the API — uses the local .Schema.json files already on disk. * * If `config.actionsParams.dataSource` is specified, only that data source is regenerated. * If the name does not match any known data source, an error is thrown. * * @param config - Context including VFS, file paths, and optional data source name filter. * @returns A result object with `succeeded` and `failed` arrays. */ export declare function regenDataSourceTsAsync(config: RegenDataSourceTsContext): Promise; //# sourceMappingURL=RegenDataSourceTs.d.ts.map