Files
klz-cables.com/.pnpm-store/v10/files/72/661e9f723703b9cd358fe322006098a7013f5d99558d4e94bb8b686691a179408d8f5d523cbd612b9aacfaabdf153447edb9dbb1e4e5e76ae5c0495088060a
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

32 lines
1.4 KiB
Plaintext

import type * as Hapi from '@hapi/hapi';
export declare const HapiComponentName = "@hapi/hapi";
/**
* This symbol is used to mark a Hapi route handler or server extension handler as
* already patched, since its possible to use these handlers multiple times
* i.e. when allowing multiple versions of one plugin, or when registering a plugin
* multiple times on different servers.
*/
export declare const handlerPatched: unique symbol;
export type HapiServerRouteInputMethod = (route: HapiServerRouteInput) => void;
export type HapiServerRouteInput = PatchableServerRoute | PatchableServerRoute[];
export type PatchableServerRoute = Hapi.ServerRoute<any> & {
[handlerPatched]?: boolean;
};
export type HapiPluginObject<T> = Hapi.ServerRegisterPluginObject<T>;
export type HapiPluginInput<T> = HapiPluginObject<T> | Array<HapiPluginObject<T>>;
export type RegisterFunction<T> = (plugin: HapiPluginInput<T>, options?: Hapi.ServerRegisterOptions) => Promise<void>;
export type PatchableExtMethod = Hapi.Lifecycle.Method & {
[handlerPatched]?: boolean;
};
export type ServerExtDirectInput = [
Hapi.ServerRequestExtType,
Hapi.Lifecycle.Method,
(Hapi.ServerExtOptions | undefined)?
];
export declare const HapiLayerType: {
ROUTER: string;
PLUGIN: string;
EXT: string;
};
export declare const HapiLifecycleMethodNames: Set<string>;
//# sourceMappingURL=internal-types.d.ts.map