UnauthenticatedClient: {
    annotations: {
        fetchAnnotation: ((annotationId: string) => Promise<Annotation>);
    };
    groups: {
        fetchGroup: ((groupId: string) => Promise<Group>);
        getGroupMembers: ((groupId: string) => Promise<User[]>);
        getListOfGroups: (() => Promise<Group[]>);
    };
    profile: {
        fetchProfile: (() => Promise<Profile>);
        fetchUsersGroups: (() => Promise<Group[]>);
    };
    root: (() => Promise<IndexResponse>);
    search: ((query: Query) => Promise<Result>);
}

Type declaration

Generated using TypeDoc