We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
dc2999a
#4708 2fc7ad92 Thanks @bryanph! - Allow Operation type to be extended
2fc7ad92
Operation
For example:
import type { BaseOperation } from 'slate' type CustomOperation = | BaseOperation | YourCustomOperation | AnotherCustomOperation declare module 'slate' { interface CustomTypes { Operation: CustomOperation; } }