cypress
Version:
Cypress is a next generation front end testing tool built for the modern web
20 lines (18 loc) • 313 B
TypeScript
declare namespace Cypress {
type SupportedNamedKey = 'ArrowDown' |
'ArrowLeft' |
'ArrowRight' |
'ArrowUp' |
'End' |
'Home' |
'PageDown' |
'PageUp' |
'Space' |
'Enter' |
'Tab' |
'Backspace' |
'Delete' |
'Insert' |
'Escape'
type SupportedKey = SupportedNamedKey | string | number
}