shrub/pkg/npm/api/groups/view.d.ts
2021-02-14 14:15:43 -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;
}