mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-25 14:14:57 +00:00
9 lines
184 B
TypeScript
9 lines
184 B
TypeScript
export interface User {
|
|
avatarUrl: string;
|
|
email: string;
|
|
id: number;
|
|
isOwner: boolean;
|
|
login: string;
|
|
}
|
|
export declare function fetchUser(): Promise<null | User>;
|