@mescius/dspdfviewer
Version:
Document Solutions PDF Viewer
20 lines (18 loc) • 600 B
TypeScript
//@ts-ignore
import React, { Component } from 'react';
//@ts-ignore
import { PropertyEditorProps } from '@grapecity/core-ui';
/// <reference path="../../vendor/i18next.d.ts" />
//@ts-ignore
import { i18n } from 'i18next';
export declare type PlaceholderEditorStubEditorProps = PropertyEditorProps & {
label: string | Function;
in17n: i18n;
};
/**
* Property editor that shows simple label instead of input control.
**/
export declare class PlaceholderEditorStub extends Component<PlaceholderEditorStubEditorProps> {
//@ts-ignore
//@ts-ignore
render(): React.JSX.Element;
}