export interface ErrorData { name: string; title: string; message?: string | ((...parameters: any) => string) | undefined; hint?: string | ((...parameters: any) => string) | undefined; } /** * @docs * @kind heading * @name Gracile Errors */ /** * */ export declare const FailedToLoadModuleSSR: { readonly name: "FailedToLoadModuleSSR"; readonly title: "Could not import file."; readonly message: (importName: string) => string; readonly hint: "This is often caused by a typo in the import path. Please make sure the file exists."; }; /** * */ /** * */ export declare const InvalidRequestInAdapter: { readonly name: "InvalidRequestInAdapter"; readonly title: "Invalid request in adapter."; readonly message: (adapterName: string) => string; readonly hint: "Check that you have configured the adapter correctly."; }; /** * */ export declare const InvalidResponseInAdapter: { readonly name: "InvalidResponseInAdapter"; readonly title: "Invalid response in adapter."; readonly message: (adapterName: string) => string; readonly hint: undefined; }; /** * */ export declare const InvalidRouteDocument: { readonly name: "RoutePageRender"; readonly title: "Invalid route document configuration."; readonly message: (routePath: string) => string; readonly hint: undefined; }; /** * */ export declare const InvalidRouteDocumentResult: { readonly name: "RoutePageRender"; readonly title: "Incorrect document template result."; readonly message: (routePath: string) => string; readonly hint: undefined; }; /** * */ export declare const InvalidRouteExport: { readonly name: "InvalidRouteExport"; readonly title: "Invalid route export."; readonly message: (routePath: string) => string; readonly hint: "Should export a default `defineRoute` function."; }; /** * */ export declare const CouldNotRenderRouteDocument: { readonly name: "CouldNotRenderRouteDocument"; readonly title: "Could not render the route document."; readonly message: (routePath: string) => string; readonly hint: undefined; }; /** * */ //# sourceMappingURL=errors-data.d.ts.map