mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-01-04 00:37:57 +08:00
6 lines
144 B
TypeScript
6 lines
144 B
TypeScript
|
import { Command } from '../types'
|
||
|
|
||
|
export default (fn: (props: Parameters<Command>[0]) => boolean): Command => props => {
|
||
|
return fn(props)
|
||
|
}
|