UNPKG

@atlaskit/editor-common

Version:

A package that contains common classes and components for editor and renderer

11 lines (10 loc) 298 B
import type { Node as PmNode } from '@atlaskit/editor-prosemirror/model'; export interface Params { node: PmNode; type: 'image' | 'icon'; } export declare const getExtensionLozengeData: ({ node, type, }: Params) => { height?: number; url: string; width?: number; } | undefined;