Fixd typos in runtime

This commit is contained in:
Lea Anthony 2020-11-15 12:22:03 +11:00
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();
}