import type { GeneratorOpts } from '../utils/opts.js'; import SubGeneratorWithAuthBase from '../base/sub-gen-auth-base.js'; /** * Generator for changing the data source of an OData service. */ declare class OdataServiceGenerator extends SubGeneratorWithAuthBase { /** * The answers for the generator. */ private answers; /** * The data sources from the manifest. */ private dataSources; /** * Constructor for the OdataServiceGenerator. * * @param {string | string[]} args - The arguments for the generator. * @param {GeneratorOpts} opts - The options for the generator. */ constructor(args: string | string[], opts: GeneratorOpts); initializing(): Promise; prompting(): Promise; writing(): Promise; end(): void; } export default OdataServiceGenerator; //# sourceMappingURL=index.d.ts.map