Skip to content

Function: starBoard()

ts
function starBoard(client, parameters): Promise<{
  id: string;
  idBoard?: string;
  pos?: number;
}>;

Defined in: api/members.ts:251

Star a new board on behalf of a Member

Parameters

ParameterTypeDescription
clientClient-
parameters{ id: unknown; idBoard: unknown; pos: unknown; }-
parameters.idunknownThe ID or username of the member
parameters.idBoardunknownThe ID of the board to star
parameters.posunknownThe position of the newly starred board. top, bottom, or a positive float.

Returns

Promise<{ id: string; idBoard?: string; pos?: number; }>