UNPKG

@atlaskit/editor-core

Version:

A package contains Atlassian editor core functionality

10 lines (9 loc) 260 B
/// <reference types="react" /> import { PureComponent } from 'react'; export declare type SubSupType = 'sub' | 'sup'; export interface Props { type: SubSupType; } export default class SubSup extends PureComponent<Props, {}> { render(): JSX.Element; }