@inntechcorp/it-design 2.0.97 → 2.0.99

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/index.d.ts CHANGED
@@ -853,7 +853,7 @@ type ITDImperativeFuncProps = {
853
853
 
854
854
  type SingleQueryProps = {
855
855
  set: (type: string, value: string | string[] | null) => void;
856
- get: (type: string, _default?: string, _minLength?: number) => string | string[] | null;
856
+ get: (type: string, defaultValue?: string, minLength?: number) => string | string[];
857
857
  remove: (type: string) => void;
858
858
  isEmpty: () => boolean;
859
859
  };