14 lines
452 B
TypeScript
14 lines
452 B
TypeScript
import type { ComputedRef, MaybeRef } from 'vue'
|
|
|
|
type ComponentProps<T> = T extends new(...args: any) => { $props: infer P } ? NonNullable<P>
|
|
: T extends (props: infer P, ...args: any) => any ? P
|
|
: {}
|
|
|
|
declare module 'nuxt/app' {
|
|
interface NuxtLayouts {
|
|
}
|
|
export type LayoutKey = keyof NuxtLayouts extends never ? string : keyof NuxtLayouts
|
|
interface PageMeta {
|
|
layout?: MaybeRef<LayoutKey | false> | ComputedRef<LayoutKey | false>
|
|
}
|
|
} |