verdnatura-chat/app/definitions/rest/v1/customUserStatus.ts

8 lines
148 B
TypeScript
Raw Normal View History

2022-02-28 18:00:47 +00:00
export type CustomUserStatusEndpoints = {
'custom-user-status.list': {
GET: (params: { query: string }) => {
statuses: unknown[];
};
};
};