import type { TsUnknown } from "./TsUnknown.js"; export type ContextMenuCallbackPayload = { /** * The key of the clicked item */ key: string; /** * The value of the clicked item, if any */ value?: TsUnknown | null; /** * The checked state of the clicked item, if it has a checkbox */ checked?: boolean | null; /** * The meta of the context menu */ meta?: TsUnknown | null; }; //# sourceMappingURL=ContextMenuCallbackPayload.d.ts.map