UNPKG

vike

Version:

(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.

9 lines (8 loc) • 375 B
export type { FileType }; export { fileTypes }; export { isValidFileType }; export { determineFileType }; declare const fileTypes: readonly [".page", ".page.server", ".page.route", ".page.client", ".css"]; type FileType = (typeof fileTypes)[number]; declare function isValidFileType(filePath: string): boolean; declare function determineFileType(filePath: string): FileType;