@ambitiondev/nuxt-cookiebot
Version:
Implementation for Cookiebot in Nuxt applications
16 lines (13 loc) • 645 B
text/typescript
import * as _nuxt_schema from '@nuxt/schema';
import { PluginOptions } from '@ambitiondev/cookiebot-common';
interface ModuleOptions extends PluginOptions {
/**
* Configure if the consent banner should be shown automatically. Defaults to `true`.
* Override this behaviour if you would like to add stateful logic to the consent banner.
*
* Locale from `nuxt-i18n` is detected automatically to set culture for your Cookiebot implementation.
*/
autoConsentBanner: boolean;
}
declare const _default: _nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
export { type ModuleOptions, _default as default };