vike
Version:
The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.
14 lines (13 loc) • 411 B
TypeScript
export { getVikeConfigError };
export { getVikeConfigErrorBuild };
export { setVikeConfigError };
type VikeConfigHasError = false | {
err: unknown;
};
declare function setVikeConfigError(val: {
errorRuntime: VikeConfigHasError;
} | {
errorBuild: VikeConfigHasError;
}): void;
declare function getVikeConfigError(): VikeConfigHasError;
declare function getVikeConfigErrorBuild(): VikeConfigHasError;