jamis
Version:
一种支持通过JSON配置方式生成页面的组件库
5 lines (4 loc) • 338 B
TypeScript
import React from 'react';
import type { InputTextProps, InputTextRef } from './types';
export declare const transformValue: (transform: InputTextProps["transform"], value: string) => string;
export declare const TextNormal: React.ForwardRefExoticComponent<Pick<InputTextProps, keyof InputTextProps> & React.RefAttributes<InputTextRef>>;