update userlist endpoints (#16)

This commit is contained in:
marihachi
2021-05-21 13:55:39 +09:00
committed by GitHub
parent 83b86c745d
commit 9d89314afa
2 changed files with 13 additions and 8 deletions

View File

@@ -19,7 +19,12 @@ export type User = {
export type UserGroup = TODO;
export type UserList = TODO;
export type UserList = {
id: ID;
createdAt: DateString;
name: string;
userIds: User['id'][];
};
export type MeDetailed = User & {
avatarId: DriveFile['id'];