ff-admin-server/src/command/refreshCommand.ts

10 lines
161 B
TypeScript
Raw Normal View History

export interface CreateRefreshCommand {
2025-01-29 08:53:49 +01:00
userId: string;
isFromPwa?: boolean;
}
export interface DeleteRefreshCommand {
2024-08-23 14:42:47 +02:00
token: string;
2025-01-29 08:53:49 +01:00
userId: string;
}