5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-12 23:19:29 +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",
"version": "1.2.1",
"version": "1.2.2",
"description": "Wails V2 Javascript runtime library",
"main": "main.js",
"types": "runtime.d.ts",

View File

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