UNPKG

contentful-management

Version:
12 lines (11 loc) 560 B
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>; };