feature/state-and-data-fetching #1

Merged
ilia merged 27 commits from feature/state-and-data-fetching into main 2026-03-24 08:02:20 +00:00
3 changed files with 12 additions and 0 deletions
Showing only changes of commit 5267c35d15 - Show all commits

View File

@@ -0,0 +1 @@
export * from "./model";

View File

@@ -0,0 +1 @@
export * from "./types/types";

View File

@@ -0,0 +1,10 @@
export interface User {
/**
* User's unique identifier.
*/
id: string;
/**
* User's email address.
*/
email: string;
}