@szum-tech/design-system
Version:
Szum-Tech design system with tailwindcss support
15 lines (10 loc) • 421 B
text/typescript
import * as React from 'react';
interface UseValidationLogProps {
check: boolean;
scope: string;
message: string;
}
declare function useValidationLog({ check, scope, message }: UseValidationLogProps): void;
declare function useLazyRef<T>(fn: () => T): React.RefObject<T>;
declare const useIsomorphicLayoutEffect: typeof React.useEffect;
export { useIsomorphicLayoutEffect, useLazyRef, useValidationLog };