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
16 lines
566 B
Plaintext
16 lines
566 B
Plaintext
import type { ClientField } from 'payload';
|
|
import type React from 'react';
|
|
type TrackSubSchemaErrorCountProps = {
|
|
fields?: ClientField[];
|
|
/**
|
|
* This path should only include path segments that affect data
|
|
* i.e. it should not include _index-0 type segments
|
|
*
|
|
* For collapsibles and tabs you can simply pass their parent path
|
|
*/
|
|
path: (number | string)[];
|
|
setErrorCount: (count: number) => void;
|
|
};
|
|
export declare const WatchChildErrors: React.FC<TrackSubSchemaErrorCountProps>;
|
|
export {};
|
|
//# sourceMappingURL=index.d.ts.map |