Files
klz-cables.com/.pnpm-store/v10/files/7e/2f9db55154f4cfa748465d39a216a078d954ac512ed8849feb53beed2505ce3d275763968fc0dd6c6708727f3476b6d1d799fae23f28405d0319ad11a86a59
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

25 lines
981 B
Plaintext

type DelayedRenderProps = {
/** Time in ms to wait before "mounting" the component. */
delayBeforeShow: number;
/** Time in ms for the "enter" phase of the transition, after delay completes. */
inTimeout: number;
/** Min time in ms for the "entered" phase of the transition. */
minShowTime: number;
/** Time in ms for the exit phase of the transition. */
outTimeout: number;
/** `true` starts the mount process.
* `false` starts the unmount process.
* */
show: boolean;
};
type useDelayedRenderT = (props: DelayedRenderProps) => {
/** `true` if the component has mounted after the timeout. */
isMounted: boolean;
/** `true` if the component is unmounting. */
isUnmounting: boolean;
/** Call this function to trigger the timeout delay before rendering. */
triggerDelayedRender: () => void;
};
export declare const useDelayedRender: useDelayedRenderT;
export {};
//# sourceMappingURL=useDelayedRender.d.ts.map