mirror of
https://github.com/urbit/shrub.git
synced 2024-12-22 02:11:38 +03:00
13 lines
285 B
TypeScript
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;
|
|
}
|