···11+// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
22+// This file is automatically generated. DO NOT EDIT
33+import {main} from '../models';
44+55+export function IsAuthenticated():Promise<boolean>;
66+77+export function Login(arg1:string):Promise<void>;
88+99+export function RefreshSession():Promise<void>;
1010+1111+export function Whoami(arg1:boolean):Promise<main.Auth>;
+19
frontend/wailsjs/go/main/AuthService.js
···11+// @ts-check
22+// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
33+// This file is automatically generated. DO NOT EDIT
44+55+export function IsAuthenticated() {
66+ return window['go']['main']['AuthService']['IsAuthenticated']();
77+}
88+99+export function Login(arg1) {
1010+ return window['go']['main']['AuthService']['Login'](arg1);
1111+}
1212+1313+export function RefreshSession() {
1414+ return window['go']['main']['AuthService']['RefreshSession']();
1515+}
1616+1717+export function Whoami(arg1) {
1818+ return window['go']['main']['AuthService']['Whoami'](arg1);
1919+}