({
editor = createEditor(),
...options
}: CreateStaticEditorOptions<V, P> = {})
| 37 | }; |
| 38 | |
| 39 | export const createStaticEditor = < |
| 40 | V extends Value = Value, |
| 41 | P extends AnyPluginConfig = CorePlugin, |
| 42 | >({ |
| 43 | editor = createEditor(), |
| 44 | ...options |
| 45 | }: CreateStaticEditorOptions<V, P> = {}) => withStatic<V, P>(editor, options); |
no test coverage detected
searching dependent graphs…