@alicloud/cloud-charts
Version:

21 lines (20 loc) • 605 B
TypeScript
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 {};