@mi-avalon/libs 0.0.12 → 0.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,6 @@
1
+ import { ButtonProps } from 'antd';
2
+ import React from 'react';
3
+ export interface IMyButtonProps extends ButtonProps {
4
+ custom?: string;
5
+ }
6
+ export declare const MyButton: (props: IMyButtonProps) => React.JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './MyButton';
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@mi-avalon/libs",
3
3
  "author": "顾冬杰",
4
4
  "module": "dist/lib.esm.js",
5
- "version": "0.0.12",
5
+ "version": "0.0.13",
6
6
  "license": "MIT",
7
7
  "main": "dist/index.js",
8
8
  "typings": "dist/index.d.ts",