@wordpress/e2e-test-utils-playwright
Version:
End-To-End (E2E) test utils for WordPress.
26 lines • 630 B
TypeScript
/**
* This filed is partially copied from @wordpress/keycodes to keep the package
* (internal-)dependencies free.
*/
/**
* Keycode for ALT key.
*/
export declare const ALT = "alt";
/**
* Keycode for CTRL key.
*/
export declare const CTRL = "ctrl";
/**
* Keycode for COMMAND key.
*/
export declare const COMMAND = "meta";
/**
* Keycode for SHIFT key.
*/
export declare const SHIFT = "shift";
/**
* Object that contains functions that return the available modifier
* depending on platform.
*/
export declare const modifiers: Record<string, (_isApple: () => boolean) => string[]>;
//# sourceMappingURL=keycodes.d.ts.map