functional.d.ts 536 B

1234567891011
  1. /**
  2. * This file should contain behavior for functional keys as described here:
  3. * https://w3c.github.io/uievents-code/#key-alphanumeric-functional
  4. */
  5. import { behaviorPlugin } from '../types';
  6. export declare const preKeydownBehavior: behaviorPlugin[];
  7. export declare const keydownBehavior: behaviorPlugin[];
  8. export declare const keypressBehavior: behaviorPlugin[];
  9. export declare const preKeyupBehavior: behaviorPlugin[];
  10. export declare const keyupBehavior: behaviorPlugin[];
  11. export declare const postKeyupBehavior: behaviorPlugin[];