UNPKG
nuxt-feature-flags
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
Feature flags for Nuxt
github.com/rxb3rth/nuxt-feature-flags
rxb3rth/nuxt-feature-flags
nuxt-feature-flags
/
dist
/
types.d.mts
8 lines
(4 loc)
•
246 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
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
{
default
}
from
'./module.js'