import * as _nuxt_schema from '@nuxt/schema'; interface ModuleOptions { /** * Galaxy server URL * @default process.env.GALAXY_URL * @example 'http://localhost:9000/' * @type string * @docs https://bioblend.readthedocs.io/en/latest/api_docs/galaxy/all.html#bioblend.galaxy.GalaxyInstance */ url: string; /** * Galaxy API key * @default process.env.GALAXY_API_KEY * @example 'fakekey' * @type string * @docs https://bioblend.readthedocs.io/en/latest/api_docs/galaxy/all.html#bioblend.galaxy.GalaxyInstance */ apiKey: string; /** * Galaxy user email * @default process.env.GALAXY_EMAIL * @example 'email@example.com' * @type string * @docs https://bioblend.readthedocs.io/en/latest/api_docs/galaxy/all.html#bioblend.galaxy.GalaxyInstance */ email: string; /** * Use local docker galaxy */ localDocker: boolean; } declare const _default: _nuxt_schema.NuxtModule; declare module '@nuxt/schema' { interface PublicRuntimeConfig { galaxy: { url: string; }; } interface RuntimeConfig { galaxy: { apiKey: string; email: string; localDocker: boolean; }; } } export { type ModuleOptions, _default as default };