5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-12 15:09:33 +08:00

Fixd typos in runtime

This commit is contained in:
Lea Anthony 2020-11-15 12:22:03 +11:00
parent 435ac02647
commit a737d85fa5
No known key found for this signature in database
GPG Key ID: 33DAF7BB90A58405
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@wails/runtime", "name": "@wails/runtime",
"version": "1.2.1", "version": "1.2.2",
"description": "Wails V2 Javascript runtime library", "description": "Wails V2 Javascript runtime library",
"main": "main.js", "main": "main.js",
"types": "runtime.d.ts", "types": "runtime.d.ts",

View File

@ -126,6 +126,6 @@ export function Fullscreen() {
* *
* @export * @export
*/ */
export function Unfullscreen() { export function UnFullscreen() {
window.wails.Window.Unfullscreen(); window.wails.Window.UnFullscreen();
} }