17 lines
372 B
TypeScript
17 lines
372 B
TypeScript
export type LayoutKey = string
|
|
declare module 'nitropack' {
|
|
interface NitroRouteConfig {
|
|
appLayout?: LayoutKey | false
|
|
}
|
|
interface NitroRouteRules {
|
|
appLayout?: LayoutKey | false
|
|
}
|
|
}
|
|
declare module 'nitropack/types' {
|
|
interface NitroRouteConfig {
|
|
appLayout?: LayoutKey | false
|
|
}
|
|
interface NitroRouteRules {
|
|
appLayout?: LayoutKey | false
|
|
}
|
|
} |