@alicloud/cloud-charts
Version:

20 lines (19 loc) • 607 B
TypeScript
import * as React from 'react';
import { MobileProps } from "../common/platform";
import { Status } from '../common/types';
import './index.scss';
export 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(): React.JSX.Element;
}