Skip to content

Commit

Permalink
semicolon-gate
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirish committed Dec 15, 2020
1 parent f31a89d commit 05917d1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions types/externs.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,15 +127,15 @@ declare global {

export type ScreenEmulationSettings = {
/** Overriding width value in pixels (minimum 0, maximum 10000000). 0 disables the override. */
width: number,
width: number;
/** Overriding height value in pixels (minimum 0, maximum 10000000). 0 disables the override. */
height: number,
height: number;
/** Overriding device scale factor value. 0 disables the override. */
deviceScaleFactor: number,
deviceScaleFactor: number;
/** Whether to emulate mobile device. This includes viewport meta tag, overlay scrollbars, text autosizing and more. */
mobile: boolean,
mobile: boolean;
/** Whether screen emulation is disabled. If true, the other emulation settings are ignored. */
disabled: boolean,
disabled: boolean;
};

/**
Expand Down

0 comments on commit 05917d1

Please sign in to comment.