Home > @cascadiacollections/fluentui-compat > UseSetTimeoutReturnType
UseSetTimeoutReturnType type
Signature:
export type UseSetTimeoutReturnType = {
setTimeout: (callback: () => void, duration: number) => TimeoutId;
clearTimeout: (id: TimeoutId) => void;
};
References: TimeoutId