Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
15 lines
671 B
Plaintext
15 lines
671 B
Plaintext
import type { ClientConfig, Column } from 'payload';
|
|
import { type I18nClient, type TFunction } from '@payloadcms/translations';
|
|
import type { UpcomingEvent } from './types.js';
|
|
type Args = {
|
|
dateFormat: string;
|
|
deleteHandler: (id: number | string) => void;
|
|
docs: UpcomingEvent[];
|
|
i18n: I18nClient;
|
|
localization: ClientConfig['localization'];
|
|
supportedTimezones: ClientConfig['admin']['timezones']['supportedTimezones'];
|
|
t: TFunction;
|
|
};
|
|
export declare const buildUpcomingColumns: ({ dateFormat, deleteHandler, docs, i18n, localization, supportedTimezones, t, }: Args) => Column[];
|
|
export {};
|
|
//# sourceMappingURL=buildUpcomingColumns.d.ts.map |