Skip to content

PluginArgsRegistry

Defined in: packages/core/src/plugin/usePluginControl.ts:23

Registry for plugin open() args types.

Plugin authors can extend this interface via module augmentation to provide type-safe args for their plugins.

// In your plugin file:
declare module "@izumisy/seizen-table/plugin" {
interface PluginArgsRegistry {
"my-plugin": { row: MyRowType; mode: "view" | "edit" };
}
}