aboutsummaryrefslogtreecommitdiff
path: root/src/console/clients/ConsoleFrameClient.ts
blob: 954e51826116a519fa5e44f2b7db54b34b470160 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import * as messages from "../../shared/messages";

export default class ConsoleFrameClient {
  async resize(width: number, height: number): Promise<void> {
    await browser.runtime.sendMessage({
      type: messages.CONSOLE_RESIZE,
      width,
      height,
    });
  }
}