kms electron

This commit is contained in:
2024-01-10 16:26:45 +01:00
parent 1f1dc65a97
commit 6790fe5ef6
14 changed files with 217 additions and 108 deletions

5
src/types/user.ts Normal file
View File

@@ -0,0 +1,5 @@
export type User = {
id: number;
name: string;
email: string;
};