UNPKG

@paroicms/server

Version:
17 lines (16 loc) 696 B
import { type ReadFieldValuesOrWGalleries } from "@paroicms/public-anywhere-lib"; import type { SiteContext } from "../../site-context/site-context.types.js"; export declare function getFieldValuesOfLNode(siteContext: SiteContext, options: { lNodeId: string; fieldNames?: string[]; preprocess?: boolean; ignoreUnknownFieldNames?: boolean; publishedOnly: boolean; }): Promise<ReadFieldValuesOrWGalleries>; export declare function getFieldValuesOfOneList(siteContext: SiteContext, options: { parentLNodeId: string; listName?: string; fieldNames?: string[]; preprocess?: boolean; publishedOnly: boolean; }): Promise<Map<string, ReadFieldValuesOrWGalleries>>;