shrub/pkg/npm/api/groups/view.ts
2021-02-24 19:54:00 -08:00

13 lines
285 B
TypeScript

import { joinError, joinProgress, joinResult } from ".";
export type JoinError = typeof joinError[number];
export type JoinResult = typeof joinResult[number];
export type JoinProgress = typeof joinProgress[number];
export interface JoinRequests {
[rid: string]: JoinProgress;
}