Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The system object provides functions related to the system - software.

Code Block
languagejs
titlesystem IDL
collapsetrue
[
    GarbageCollected
] interface System {
    void reboot();
    Promise <void> setImageSizeThreshold(Size size);
};

interface Size {
    attribute int width;
    attribute int height;
};

...