processor_factory.d.ts 258 B

1234
  1. import { KeyCode } from './event_util.js';
  2. export declare function process<T>(name: string, expr: string): T;
  3. export declare function output(name: string, expr: string): string;
  4. export declare function keypress(name: string, expr: KeyCode | string): string;