This commit is contained in:
Saeed Vaziry
2025-05-20 08:15:10 +02:00
parent f7ac3c32f0
commit eb86204069
8 changed files with 372 additions and 1 deletions

9
resources/js/types/api-key.d.ts vendored Normal file
View File

@ -0,0 +1,9 @@
export interface ApiKey {
id: number;
name: string;
permissions: string[];
created_at: string;
updated_at: string;
[key: string]: unknown;
}