vike
Version:
(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.
23 lines (22 loc) • 674 B
TypeScript
export { getVikeConfigError };
export { getVikeConfigErrorBuild };
export { setVikeConfigError };
export { debugFileChange };
declare const debugFileChange: ((...msgs: unknown[]) => void) & {
options: (optionsLocal: {
serialization?: {
emptyArray?: string;
};
}) => (...msgs: unknown[]) => void;
isActivated: boolean;
};
type VikeConfigHasError = false | {
err: unknown;
};
declare function setVikeConfigError(val: {
errorRuntime: VikeConfigHasError;
} | {
errorBuild: VikeConfigHasError;
}): void;
declare function getVikeConfigError(): VikeConfigHasError;
declare function getVikeConfigErrorBuild(): VikeConfigHasError;