@atlaskit/editor-plugin-table
Version:
Table plugin for the @atlaskit/editor
12 lines (11 loc) • 525 B
TypeScript
import type { DispatchAnalyticsEvent } from '@atlaskit/editor-common/analytics';
import type { Dispatch } from '@atlaskit/editor-common/event-dispatcher';
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
export declare const META_KEYS: {
OVERFLOW_TRIGGER: string;
OVERFLOW_STATE_CHANGED: string;
};
declare const createPlugin: (dispatch: Dispatch, dispatchAnalyticsEvent: DispatchAnalyticsEvent, tableResizingEnabled: boolean) => SafePlugin<{
lastTrigger: undefined;
}>;
export { createPlugin };