9 lines
142 B
TypeScript
9 lines
142 B
TypeScript
|
export class AuthApi {
|
||
|
/**
|
||
|
* Check out whether user is signed in or not
|
||
|
*/
|
||
|
static get SignedIn(): boolean {
|
||
|
return false;
|
||
|
}
|
||
|
}
|