UNPKG

@maxlkatze/cms

Version:

A git based Nuxt Module CMS - zero effort, zero cost

8 lines (7 loc) 146 B
export interface Route { name: string; path: string; slug?: string; component: unknown; } export type Lazy<T> = () => Promise<T>;