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
10 lines
518 B
Plaintext
10 lines
518 B
Plaintext
import type { ClipboardPasteActionValidateArgs } from './types.js';
|
|
/**
|
|
* Validates whether clipboard data is compatible with the target schema.
|
|
* For this to be true, the copied field and the target to be pasted must
|
|
* be structurally equivalent (same schema)
|
|
*
|
|
* @returns True if the clipboard data is valid and can be pasted, false otherwise
|
|
*/
|
|
export declare function isClipboardDataValid({ data, path, ...args }: ClipboardPasteActionValidateArgs): boolean;
|
|
//# sourceMappingURL=isClipboardDataValid.d.ts.map |