You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
506 B
25 lines
506 B
import { _Base } from "common/lib/_Base"
|
|
|
|
class PlatForm extends _Base {
|
|
constructor() {
|
|
super()
|
|
}
|
|
|
|
async showAbout() {
|
|
return await fetch("api://fuck/BasicService/showAbout")
|
|
}
|
|
|
|
async isFullScreen() {
|
|
return await api.call("BasicCommand.isFullscreen")
|
|
}
|
|
|
|
async toggleFullScreen() {
|
|
return api.call("BasicCommand.fullscreen")
|
|
}
|
|
|
|
async toggleDevTools() {
|
|
return api.call("BasicCommand.toggleDevTools")
|
|
}
|
|
}
|
|
|
|
export { PlatForm }
|
|
|