@trackunit/filters-filter-bar 0.0.272 → 0.0.275
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/index.esm.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./src/index";
|
package/package.json
CHANGED
|
@@ -4,4 +4,4 @@
|
|
|
4
4
|
* @template T - The type of the filter values.
|
|
5
5
|
* @returns {(prev?: T[]) => T[]} A function that takes an optional previous array of filter values
|
|
6
6
|
*/
|
|
7
|
-
export declare const toggleFilterValue: <T extends string | number | object>(value: T) => (prev?: T[]
|
|
7
|
+
export declare const toggleFilterValue: <T extends string | number | object>(value: T) => ((prev?: T[]) => T[]);
|