Function: starBoard()
ts
function starBoard(
client,
parameters,
options?): Promise<{
id: string;
idBoard?: string;
pos?: number;
}>;Defined in: api/members.ts:283
Star a new board on behalf of a Member
Parameters
| Parameter | Type | Description |
|---|---|---|
client | Client | - |
parameters | { id: string; idBoard: string; pos: string | number | string & object; } | - |
parameters.id | string | The ID or username of the member |
parameters.idBoard? | string | The ID of the board to star |
parameters.pos? | string | number | string & object | The position of the newly starred board. top, bottom, or a positive float. |
options? | RequestOptions | - |
Returns
Promise<{ id: string; idBoard?: string; pos?: number; }>