bt-core-app 1.4.330 → 1.4.331
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.
- package/dist/bt-core-app.js +230 -221
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -484,7 +484,7 @@ declare interface DemoApiGroup {
|
|
|
484
484
|
|
|
485
485
|
export declare const demoKey: unique symbol;
|
|
486
486
|
|
|
487
|
-
export declare function distinct(list: any):
|
|
487
|
+
export declare function distinct<T>(list: T[], compareFunc?: string | ((item: T) => any)): T[];
|
|
488
488
|
|
|
489
489
|
export declare interface DoActionOptions {
|
|
490
490
|
completionMsg?: string;
|
package/package.json
CHANGED