初始化 antd-pro
This commit is contained in:
12
admin-web/src/components/Charts/MiniBar/index.d.ts
vendored
Normal file
12
admin-web/src/components/Charts/MiniBar/index.d.ts
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
import * as React from 'react';
|
||||
export interface IMiniBarProps {
|
||||
color?: string;
|
||||
height: number;
|
||||
data: Array<{
|
||||
x: number | string;
|
||||
y: number;
|
||||
}>;
|
||||
style?: React.CSSProperties;
|
||||
}
|
||||
|
||||
export default class MiniBar extends React.Component<IMiniBarProps, any> {}
|
||||
Reference in New Issue
Block a user