contentful-management
Version:
Client for Contentful's Content Management API
12 lines (11 loc) • 560 B
TypeScript
import type { ContentSemanticsSettingsProps } from '../../entities/semantic-settings';
import type { OptionalDefaults } from '../wrappers/wrap';
import type { GetOrganizationParams } from '../../common-types';
export type SemanticSettingsPlainClientAPI = {
/**
* Fetches the semantic settings for an organization.
* @param params Parameters for getting the organization.
* @returns A promise that resolves to the semantic settings.
*/
get(params: OptionalDefaults<GetOrganizationParams>): Promise<ContentSemanticsSettingsProps>;
};