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

10 lines
161 B
TypeScript
Raw Permalink Normal View History

export interface CreateRefreshCommand {
userId: string;
isFromPwa?: boolean;
}
export interface DeleteRefreshCommand {
token: string;
userId: string;
}