dozy 1.0.38 → 1.0.40

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
@@ -174,7 +174,11 @@ declare class Scaler {
174
174
  innerContainer: HTMLElement;
175
175
  constructor(innerContainer: HTMLElement);
176
176
  }
177
- export declare function enableScaler(outerContainer: HTMLElement, initer?: ScaleIniter, innerContainer?: HTMLElement): (() => void) | undefined;
177
+ export declare function enableScaler(outerContainer: HTMLElement, initer?: ScaleIniter, innerContainer?: HTMLElement): {
178
+ resizer: () => void;
179
+ clean: () => void;
180
+ setBase: (val: number) => void;
181
+ } | undefined;
178
182
  /**
179
183
  * Hello
180
184
  * @param widthElement 容器
@@ -297,7 +301,7 @@ export declare function toRgbString(input: string | Color | any): string | undef
297
301
  * @returns HSL/HSLA string or undefined.
298
302
  */
299
303
  export declare function toHslString(input: string | Color | any): string | undefined;
300
- export declare const DOZY = "1.0.38";
304
+ export declare const DOZY = "1.0.40";
301
305
  export * from "axios";
302
306
  export * from "zod";
303
307