feat(User): create User interface

This commit is contained in:
Ilia Mashkov
2026-03-16 12:54:52 +03:00
parent 8916fd759e
commit 5267c35d15
3 changed files with 12 additions and 0 deletions

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;
}