cli-testing-library
Version:
Simple and complete CLI testing utilities that encourage good testing practices.
13 lines (12 loc) • 322 B
TypeScript
export type keyboardOptions = {
/** Delay between keystrokes */
delay: number;
/** Keyboard layout to use */
keyboardMap: Array<keyboardKey>;
};
export interface keyboardKey {
/** Physical location on a keyboard */
code?: string;
/** Character or functional key hex code */
hex?: string;
}