10 lines
161 B
TypeScript
10 lines
161 B
TypeScript
|
export interface CreateRefreshCommand {
|
||
|
userId: string;
|
||
|
isFromPwa?: boolean;
|
||
|
}
|
||
|
|
||
|
export interface DeleteRefreshCommand {
|
||
|
token: string;
|
||
|
userId: string;
|
||
|
}
|