/****************************************************************************** * Copyright 2021 TypeFox GmbH * This program and the accompanying materials are made available under the * terms of the MIT License, which is available in the project root. ******************************************************************************/ import type { Domainmodel } from '../language-server/generated/ast.js'; export declare const generateAction: (fileName: string, opts: GenerateOptions) => Promise; export type GenerateOptions = { destination?: string; root?: string; quiet: boolean; }; export declare function generateJava(domainmodel: Domainmodel, fileName: string, destination?: string): string; //# sourceMappingURL=generator.d.ts.map