@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
17 lines (16 loc) • 373 B
TypeScript
import type { SSR } from '@atlaskit/media-common';
import type { MediaClientConfig } from '@atlaskit/media-core';
export type MediaInlineAttrs = {
type?: string;
alt?: string;
width?: number;
height?: number;
};
export type MediaSSR = {
mode: SSR;
config: MediaClientConfig;
};
export type Dimensions = {
width?: number;
height?: number;
};