/** * A map providing dirnames for config langs * @type {Map} */ export const ConfigLangs: Map; /** * Options available for the "atscm init" command. * @type {Object} * @property {InitOption} name The new project's name. * @property {InitOption} description The new project's description. * @property {InitOption} author The new project's author. * @property {InitOption} atviseHost The new project's atvise server host. * @property {InitOption} atvisePortOpc The new project's atvise server OPC port. * @property {InitOption} atvisePortHttp The new project's atvise server HTTP port. * @property {InitOption} useLogin If the new porject's atvise server requires login. * @property {InitOption} atviseUsername The new project's atvise server login name. * @property {InitOption} atvisePassword The new project's atvise server login password. * @property {InitOption} configLang The language to use for the new project's configuration. */ export const InitOptions: any; export default InitOptionsAsArray; /** * {@link InitOptions}, exported as an array. Required to run {@link Inquirer}. * @type {InitOption[]} */ declare const InitOptionsAsArray: InitOption[]; import InitOption from "../lib/init/Option";