import SubGeneratorWithAuthBase from '../base/sub-gen-auth-base.js'; import type { GeneratorOpts } from '../utils/opts.js'; /** * Generator for adding annotations to OData services. */ declare class AddAnnotationsToDataGenerator extends SubGeneratorWithAuthBase { /** * The answers from the prompts. */ private answers; /** * The data sources from the manifest. */ private dataSources; /** * Creates an instance of the generator. * * @param {string | string[]} args - The arguments passed to 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 AddAnnotationsToDataGenerator; //# sourceMappingURL=index.d.ts.map