@luizleon/sf.prefeiturasp.vuecomponents 4.1.7 → 4.1.9

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.
@@ -30,5 +30,12 @@ declare class Utilities {
30
30
  static Mask(value: string, mask: string): string;
31
31
  static MaskCpf(value: string): string;
32
32
  static MaskCnpj(value: string): string;
33
+ /**
34
+ * Pausa a execução do código por um determinado tempo, em milissegundos.
35
+ * @example await Utilities.DelayAsync(1000)
36
+ * @param ms
37
+ * @returns
38
+ */
39
+ static DelayAsync(ms: number): Promise<unknown>;
33
40
  }
34
41
  export { Utilities };