UNPKG

@atlaskit/editor-core

Version:

A package contains Atlassian editor core functionality

8 lines (7 loc) 280 B
import { EditorView } from '../../prosemirror'; import { MediaState } from '@atlaskit/media-core'; export interface Range { start: number; end: number; } export declare const insertFile: (view: EditorView, mediaState: MediaState, collection?: string | undefined) => void;