UNPKG

payload

Version:

Node, React, Headless CMS and Application Framework built on Next.js

54 lines 1.87 kB
import type { ImportMap } from '../../bin/generateImportMap/index.js'; import type { SanitizedConfig } from '../../config/types.js'; import type { PaginatedDocs } from '../../database/types.js'; import type { CollectionSlug, ColumnPreference } from '../../index.js'; import type { PayloadRequest, Sort, Where } from '../../types/index.js'; import type { ColumnsFromURL } from '../../utilities/transformColumnPreferences.js'; export type DefaultServerFunctionArgs = { importMap: ImportMap; req: PayloadRequest; }; export type ServerFunctionArgs = { args: Record<string, unknown>; name: string; }; export type ServerFunctionClientArgs = { args: Record<string, unknown>; name: string; }; export type ServerFunctionClient = (args: ServerFunctionClientArgs) => Promise<unknown> | unknown; export type ServerFunction = (args: DefaultServerFunctionArgs & ServerFunctionClientArgs['args']) => Promise<unknown> | unknown; export type ServerFunctionConfig = { fn: ServerFunction; name: string; }; export type ServerFunctionHandler = (args: { config: Promise<SanitizedConfig> | SanitizedConfig; importMap: ImportMap; } & ServerFunctionClientArgs) => Promise<unknown>; export type ListQuery = { columns?: ColumnsFromURL; limit?: string; page?: string; preset?: number | string; search?: string; sort?: Sort; where?: Where; }; export type BuildTableStateArgs = { collectionSlug: string | string[]; columns?: ColumnPreference[]; docs?: PaginatedDocs['docs']; enableRowSelections?: boolean; orderableFieldName: string; parent?: { collectionSlug: CollectionSlug; id: number | string; joinPath: string; }; query?: ListQuery; renderRowTypes?: boolean; req: PayloadRequest; tableAppearance?: 'condensed' | 'default'; }; //# sourceMappingURL=index.d.ts.map