input.js 99 B

123456
  1. export class Input {
  2. requestInput (callback) {
  3. throw new Error("Must be implemented");
  4. }
  5. }