/** * Copyright (c) 2019, salesforce.com, inc. * All rights reserved. * SPDX-License-Identifier: MIT * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT */ import { flags } from '@oclif/command'; /** * Common options */ declare const options: { resources: { locale: flags.IOptionFlag; modes: flags.IOptionFlag; srcDir: flags.IOptionFlag; partials: flags.IOptionFlag; }; metadata: { labels: flags.IOptionFlag; routes: flags.IOptionFlag; theme: flags.IOptionFlag; views: flags.IOptionFlag; }; compiler: { isDesignMode: import("@oclif/parser/lib/flags").IBooleanFlag; }; }; export { options }; //# sourceMappingURL=options.d.ts.map