@attributech/nuxt-drupal-utils
Version:
Shared utilities for Nuxt 3 projects with Drupal backend
8 lines (4 loc) • 321 B
text/typescript
import type { NuxtModule } from '@nuxt/schema'
import type { default as Module } from './module.js'
export type ModuleOptions = typeof Module extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
export { type getApiUrl, type getAppUrl, type getLagoonDevelopmentDomain, type getServerUrl } from './module.js'