fetch user profile (wip)
This commit is contained in:
4
src/types/bindings/AppData.ts
Normal file
4
src/types/bindings/AppData.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { UserProfile } from "./UserProfile";
|
||||
|
||||
export type AppData = { user: UserProfile | null, };
|
||||
3
src/types/bindings/CursorPosition.ts
Normal file
3
src/types/bindings/CursorPosition.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type CursorPosition = { x: number, y: number, };
|
||||
4
src/types/bindings/CursorPositions.ts
Normal file
4
src/types/bindings/CursorPositions.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { CursorPosition } from "./CursorPosition";
|
||||
|
||||
export type CursorPositions = { raw: CursorPosition, mapped: CursorPosition, };
|
||||
3
src/types/bindings/UserProfile.ts
Normal file
3
src/types/bindings/UserProfile.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type UserProfile = { id: string, name: string, email: string, username: string, createdAt: string, lastLoginAt: string, };
|
||||
Reference in New Issue
Block a user