@atlaskit/editor-plugin-type-ahead
Version:
Type-ahead plugin for @atlaskit/editor-core
5 lines (4 loc) • 308 B
TypeScript
import type { Transaction } from '@atlaskit/editor-prosemirror/state';
import type { InsertionTransactionMeta } from '../types';
import type { ACTIONS } from './actions';
export declare const isInsertionTransaction: (transactions: readonly Transaction[], action: ACTIONS) => InsertionTransactionMeta | null;