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