Skip to content

getAllGroups

api.getAllGroups()

Parameters

Return

Promise<GetAllGroupsResponse>

Types

ts
export type GetAllGroupsResponse = {
    version: string;
    gridVerMap: {
        [groupId: string]: string;
    };
};

Examples

ts
api.getAllGroups()
    .then(console.log)
    .catch(console.error);