UNPKG

@alicloud/cloud-charts

Version:

![](https://img.shields.io/npm/v/@alicloud/cloud-charts?color=%23ff8200)

21 lines (20 loc) 605 B
import * as React from 'react'; import { MobileProps } from "../common/platform"; import { Status } from '../common/types'; import './index.scss'; interface WminicontainerProps extends MobileProps { className?: string; style?: React.CSSProperties; width?: string | number; height?: string | number; status?: Status | string; } export default class Wminicontainer extends React.Component<WminicontainerProps> { static displayName: string; static defaultProps: { status: string; }; constructor(props: WminicontainerProps); render(): JSX.Element; } export {};