UNPKG

@stanfordspezi/spezi-web-design-system

Version:

Stanford Biodesign Digital Health Spezi Web Design System

10 lines (9 loc) 283 B
/** * Hook that sets a flag to true when triggered, then automatically resets it after a timeout. * * @example * ```ts * const showSuccess = useTimedFlag(isSuccess, 2000); * ``` */ export declare const useTimedFlag: (trigger: boolean | undefined, timeout: number) => boolean;