Type alias UpdateCommitteeAction

UpdateCommitteeAction: {
    action: {
        addColdCreds: {
            credential: CommitteeColdCredential;
            epoch: number;
        }[];
        prevActionId: GovActionId | null;
        removeColdCreds: CommitteeColdCredential[];
        threshold: [number, number];
    };
    type: UPDATE_COMMITTEE_ACTION;
}

Type declaration