GeneIT/geneit_app/src/api/AuthApi.ts

9 lines
142 B
TypeScript
Raw Normal View History

2023-06-06 14:39:47 +00:00
export class AuthApi {
/**
* Check out whether user is signed in or not
*/
static get SignedIn(): boolean {
return false;
}
}