12 lines
229 B
TypeScript
Executable File
12 lines
229 B
TypeScript
Executable File
export interface AccessToken {
|
|
id: number;
|
|
tokenable_type: string;
|
|
tokenable_id: number;
|
|
name: string;
|
|
token?: string;
|
|
abilities: string[];
|
|
last_used_at: string | null;
|
|
created_at: string;
|
|
updated_at: string;
|
|
}
|