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
| Parameter | Type | Description |
|---|---|---|
client | Client | - |
parameters | { id: unknown; idBoard: unknown; pos: unknown; } | - |
parameters.id | unknown | The ID or username of the member |
parameters.idBoard | unknown | The ID of the board to star |
parameters.pos | unknown | The position of the newly starred board. top, bottom, or a positive float. |
Returns
Promise<{ id: string; idBoard?: string; pos?: number; }>