@contentstack/live-preview-utils
Version:
Contentstack provides the Live Preview SDK to establish a communication channel between the various Contentstack SDKs and your website, transmitting live changes to the preview pane.
13 lines (10 loc) • 521 B
text/typescript
import { CslpData } from '../../cslp/types/cslp.types.cjs';
/**
* Retrieves the expected field data based on the provided field metadata.
*
* @param fieldMetadata The metadata of the field.
* @param entryPath The path in the entry for which the value must be returned.
* @returns A promise that resolves to the expected field data as a string.
*/
declare function getFieldData(fieldMetadata: Pick<CslpData, "content_type_uid" | "entry_uid" | "locale">, entryPath?: string): Promise<any>;
export { getFieldData };