Skip to content

Function: getFeaturesForProject()

ts
function getFeaturesForProject(client, parameters): Promise<{
[key: string]: unknown;
  features?: object[];
}>;

Defined in: src/cloud/api/projectFeatures.ts:10

Returns the list of features for a project.

Parameters

ParameterTypeDescription
clientClient-
parameters{ projectIdOrKey: string; }-
parameters.projectIdOrKeystringThe ID or (case-sensitive) key of the project.

Returns

Promise<{ [key: string]: unknown; features?: object[]; }>