@mescius/dspdfviewer
Version:
Document Solutions PDF Viewer
20 lines (19 loc) • 638 B
TypeScript
/// <reference path="../../vendor/react/react.d.ts" />
//@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> {
render(): React.JSX.Element;
}