Interface ISoundMachine

export interface ISoundMachine extends IDisposable {
  setup(): void;
  bling(): void;
  rock(): void;
  push(): void;
  gameover(): void;
}