init commit
This commit is contained in:
16
remotion/node_modules/@remotion/studio/dist/helpers/use-keybinding.d.ts
generated
vendored
Normal file
16
remotion/node_modules/@remotion/studio/dist/helpers/use-keybinding.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
import type { KeyEventType } from '../state/keybindings';
|
||||
export declare const areKeyboardShortcutsDisabled: () => boolean;
|
||||
export declare const useKeybinding: () => {
|
||||
registerKeybinding: (options: {
|
||||
event: KeyEventType;
|
||||
key: string;
|
||||
commandCtrlKey: boolean;
|
||||
callback: (e: KeyboardEvent) => void;
|
||||
preventDefault: boolean;
|
||||
triggerIfInputFieldFocused: boolean;
|
||||
keepRegisteredWhenNotHighestContext: boolean;
|
||||
}) => {
|
||||
unregister: () => void;
|
||||
};
|
||||
isHighestContext: boolean;
|
||||
};
|
||||
Reference in New Issue
Block a user