feat: add user and auth types

This commit is contained in:
Vladislav Syrochkin 2025-06-09 17:00:27 +05:00
parent 34be97996e
commit 9d2aef5671
2 changed files with 7 additions and 0 deletions

4
client/src/types/auth.ts Normal file
View File

@ -0,0 +1,4 @@
import { components } from './openapi-types';
export type Auth = components['schemas']['Auth'];
export type Access = components['schemas']['Access'];

3
client/src/types/user.ts Normal file
View File

@ -0,0 +1,3 @@
import { components } from "./openapi-types"
export type User = components["schemas"]["User"];