@whitesev/pops 2.1.6 → 2.1.7
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.
|
@@ -119,7 +119,10 @@ export interface PopsButtonDetails<T = {}> {
|
|
|
119
119
|
/**
|
|
120
120
|
* 按钮配置(匹配任意类型)
|
|
121
121
|
*/
|
|
122
|
-
export type PopsButtonDetailsAnyType<T = {}> =
|
|
122
|
+
export type PopsButtonDetailsAnyType<T = {}> = Omit<
|
|
123
|
+
PopsButtonDetails<T>,
|
|
124
|
+
"type"
|
|
125
|
+
> & {
|
|
123
126
|
/**
|
|
124
127
|
* 按钮样式类型
|
|
125
128
|
* @default "default"
|
package/package.json
CHANGED
package/src/types/button.d.ts
CHANGED
|
@@ -119,7 +119,10 @@ export interface PopsButtonDetails<T = {}> {
|
|
|
119
119
|
/**
|
|
120
120
|
* 按钮配置(匹配任意类型)
|
|
121
121
|
*/
|
|
122
|
-
export type PopsButtonDetailsAnyType<T = {}> =
|
|
122
|
+
export type PopsButtonDetailsAnyType<T = {}> = Omit<
|
|
123
|
+
PopsButtonDetails<T>,
|
|
124
|
+
"type"
|
|
125
|
+
> & {
|
|
123
126
|
/**
|
|
124
127
|
* 按钮样式类型
|
|
125
128
|
* @default "default"
|