@mescius/dspdfviewer
Version:
Document Solutions PDF Viewer
21 lines (20 loc) • 609 B
TypeScript
//@ts-ignore
import React, { Component } from 'react';
//@ts-ignore
import { PropertyEditorProps } from '@grapecity/core-ui';
export type CalloutLineEditorLocalization = {
lineTypes: {
none: string;
noneTitle: string;
simple: string;
simpleTitle: string;
corner: string;
cornerTitle: string;
};
};
export type CalloutLineEditorProps = PropertyEditorProps & CalloutLineEditorLocalization;
export declare class CalloutLineEditor extends Component<CalloutLineEditorProps, any> {
//@ts-ignore
//@ts-ignore
render(): React.JSX.Element;
}