output.js 94 B

123456
  1. export class Output {
  2. sendOutput (text) {
  3. throw new Error("Must be implemented");
  4. }
  5. }