mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 07:51:53 +02:00
6 lines
190 B
TypeScript
6 lines
190 B
TypeScript
/// <reference types="react" />
|
|
export declare enum Direction {
|
|
Forwards = 0,
|
|
Backwards = 1
|
|
}
|
|
export declare function useTabDirection(): import("react").MutableRefObject<Direction>;
|