7 lines
111 B
TypeScript
7 lines
111 B
TypeScript
/*
|
|
PromoteUser
|
|
PUT: {{baseURL}}/user/promote?user_id=1
|
|
*/
|
|
export interface PromoteUser {
|
|
user_id: string;
|
|
} |