@remirror/extension-list
Version:
17 lines (16 loc) • 495 B
TypeScript
import { CreateExtensionPlugin, KeyBindings, PlainExtension } from '@remirror/core';
/**
* Provides some shared thing used by both `listItem` and `taskListItem`
*/
export declare class ListItemSharedExtension extends PlainExtension {
get name(): "listItemShared";
createKeymap(): KeyBindings;
createPlugin(): CreateExtensionPlugin;
}
declare global {
namespace Remirror {
interface AllExtensions {
listItemShared: ListItemSharedExtension;
}
}
}