dozy 1.0.20 → 1.0.21

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.
@@ -11,4 +11,6 @@ export declare function web$pathStartData(): {
11
11
  export declare function web$enableProdProtector(): void;
12
12
  export declare function web$enableHttpsRedirect(): void;
13
13
  export declare function web$redirectToDomain(newDomain: string): void;
14
+ export declare function $copy(content: string): Promise<boolean | undefined>;
15
+ export declare function $fallbackCopy(content: string): boolean;
14
16
  //# sourceMappingURL=WebFunctions.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"WebFunctions.d.ts","sourceRoot":"","sources":["../src/WebFunctions.ts"],"names":[],"mappings":"AAEA,wBAAgB,iBAAiB,CAAC,CAAC,EAAE,MAAM,QAG1C;AACD,wBAAgB,iBAAiB;;;;;;;;EA+BhC;AAED,wBAAgB,uBAAuB,SA6CtC;AACD,wBAAgB,uBAAuB,SAWtC;AACD,wBAAgB,oBAAoB,CAAC,SAAS,EAAE,MAAM,QAIrD"}
1
+ {"version":3,"file":"WebFunctions.d.ts","sourceRoot":"","sources":["../src/WebFunctions.ts"],"names":[],"mappings":"AAEA,wBAAgB,iBAAiB,CAAC,CAAC,EAAE,MAAM,QAG1C;AACD,wBAAgB,iBAAiB;;;;;;;;EA+BhC;AAED,wBAAgB,uBAAuB,SA6CtC;AACD,wBAAgB,uBAAuB,SAWtC;AACD,wBAAgB,oBAAoB,CAAC,SAAS,EAAE,MAAM,QAIrD;AAED,wBAAsB,KAAK,CAAC,OAAO,EAAE,MAAM,gCAa1C;AAED,wBAAgB,aAAa,CAAC,OAAO,EAAE,MAAM,WAiB5C"}
package/dist/index.d.ts CHANGED
@@ -66,6 +66,8 @@ export declare function web$pathStartData(): {
66
66
  export declare function web$enableProdProtector(): void;
67
67
  export declare function web$enableHttpsRedirect(): void;
68
68
  export declare function web$redirectToDomain(newDomain: string): void;
69
+ export declare function $copy(content: string): Promise<boolean | undefined>;
70
+ export declare function $fallbackCopy(content: string): boolean;
69
71
  export declare const $jsonParse: (text: string, reviver?: (this: any, key: string, value: any) => any) => any;
70
72
  export declare const $jsonStringify: {
71
73
  (value: any, replacer?: (this: any, key: string, value: any) => any, space?: string | number): string;
@@ -183,7 +185,7 @@ export declare class StringObfuscator {
183
185
  export type Items<T> = {
184
186
  [key: string]: T;
185
187
  };
186
- export declare const DOZY = "1.0.20";
188
+ export declare const DOZY = "1.0.21";
187
189
  export * from "axios";
188
190
  export * from "zod";
189
191