eapp-amis-theme-editor
Version:
amis主题编辑器
13 lines (12 loc) • 311 B
TypeScript
/**
* @file Font.tsx
* @description 设置文字
*/
import React from 'react';
import type { FormControlProps } from 'amis-core';
interface FontEditorProps extends FormControlProps {
}
export declare class FontEditorRenderer extends React.Component<FontEditorProps> {
render(): JSX.Element;
}
export {};