@redhare/lowcode-types
Version:
Types for Ali lowCode engine
18 lines (17 loc) • 371 B
TypeScript
import { IPublicTypeI18nData } from '..';
import { ReactNode } from 'react';
export interface IPublicTypeTipConfig {
/**
* className
*/
className?: string;
/**
* tip 的内容
*/
children?: IPublicTypeI18nData | ReactNode;
theme?: string;
/**
* tip 的方向
*/
direction?: 'top' | 'bottom' | 'left' | 'right';
}