@mescius/dspdfviewer
Version:
Document Solutions PDF Viewer
27 lines (25 loc) • 766 B
TypeScript
//@ts-ignore
import React, { Component } from 'react';
//@ts-ignore
import { PropertyEditorProps } from '@grapecity/core-ui';
import { AnnotationTypeName } from './../AnnotationTypes';
/// <reference path="../../vendor/i18next.d.ts" />
//@ts-ignore
import { i18n } from 'i18next';
export type ParentIdEditorLocalization = {
noneItem: {
label: string;
title: string;
};
};
export type ParentIdEditorProps = PropertyEditorProps & ParentIdEditorLocalization & {
/**
* Annotation subtype constraint.
* */
subtypeConstraint?: AnnotationTypeName;
in17n: i18n;
};
export declare class ParentIdEditor extends Component<ParentIdEditorProps, any> {
//@ts-ignore
//@ts-ignore
render(): React.JSX.Element;
}