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
25 lines
589 B
Plaintext
25 lines
589 B
Plaintext
import type { ClientField } from 'payload';
|
|
export declare const arrayOperators: {
|
|
label: string;
|
|
value: string;
|
|
}[];
|
|
export declare const fieldTypeConditions: {
|
|
[key: string]: {
|
|
component: string;
|
|
operators: {
|
|
label: string;
|
|
value: string;
|
|
}[];
|
|
};
|
|
};
|
|
export declare const getValidFieldOperators: ({ field, operator, }: {
|
|
field: ClientField;
|
|
operator?: string;
|
|
}) => {
|
|
validOperator: string;
|
|
validOperators: {
|
|
label: string;
|
|
value: string;
|
|
}[];
|
|
};
|
|
//# sourceMappingURL=field-types.d.ts.map |