@unicom-cloud/utils 0.1.15 → 0.1.16

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.
@@ -27,35 +27,5 @@ export declare class LunarYear {
27
27
  getLeapMonth(): number;
28
28
  toString(): string;
29
29
  toFullString(): string;
30
- private _getZaoByGan;
31
- private _getZaoByZhi;
32
- getTouLiang(): string;
33
- getCaoZi(): string;
34
- getGengTian(): string;
35
- getHuaShou(): string;
36
- getZhiShui(): string;
37
- getTuoGu(): string;
38
- getQiangMi(): string;
39
- getKanCan(): string;
40
- getGongZhu(): string;
41
- getJiaTian(): string;
42
- getFenBing(): string;
43
- getDeJin(): string;
44
- getRenBing(): string;
45
- getRenChu(): string;
46
- getYuan(): string;
47
- getYun(): string;
48
- getPositionXi(): string;
49
- getPositionXiDesc(): string;
50
- getPositionYangGui(): string;
51
- getPositionYangGuiDesc(): string;
52
- getPositionYinGui(): string;
53
- getPositionYinGuiDesc(): string;
54
- getPositionFu(sect?: number): string;
55
- getPositionFuDesc(sect?: number): string;
56
- getPositionCai(): string;
57
- getPositionCaiDesc(): string;
58
- getPositionTaiSui(): string;
59
- getPositionTaiSuiDesc(): string;
60
30
  next(n: number): LunarYear;
61
31
  }
@@ -28,11 +28,6 @@ export declare class Solar {
28
28
  getOtherFestivals(): string[];
29
29
  getXingzuo(): string;
30
30
  getXingZuo(): string;
31
- /**
32
- * 获取薪资比例(感谢 https://gitee.com/smr1987)
33
- * @returns 1 | 2 | 3 薪资比例
34
- */
35
- getSalaryRate(): number;
36
31
  toYmd(): string;
37
32
  toYmdHms(): string;
38
33
  toString(): string;
@@ -7,4 +7,4 @@
7
7
  * @param {boolean} embedFonts - Whether to embed icon fonts as images
8
8
  * @returns {Promise} Promise that resolves when all pseudo-elements are processed
9
9
  */
10
- export function inlinePseudoElements(source: Element, clone: Element, compress: boolean, embedFonts: boolean | undefined, useProxy: any): Promise<any>;
10
+ export function inlinePseudoElements(source: Element, clone: Element, options: any): Promise<any>;
@@ -25,7 +25,7 @@ export declare function hslToRgb(h: number | string, s: number | string, l: numb
25
25
  * *Assumes:* r, g, and b are contained in the set [0, 255] or [0, 1]
26
26
  * *Returns:* { h, s, v } in [0,1]
27
27
  */
28
- export declare function rgbToHsv(r: number, g: number, b: number): Numberify<HSV>;
28
+ export declare function rgbToHsv(r?: number, g?: number, b?: number): Numberify<HSV>;
29
29
  /**
30
30
  * Converts an HSV color value to RGB.
31
31
  *