fat-design 0.0.1-beta.20250611154805 → 0.0.1-beta.20250629222926

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.
@@ -25,3 +25,8 @@ export declare function camelToUnderscore(str: any): any;
25
25
  export declare function template(tpl: any, object?: {}): any;
26
26
  export declare function formatUrl(url: any, baseUrl?: string): string;
27
27
  export declare function isImageURL(url: string | any): boolean;
28
+ /**
29
+ * 判断一个字符串,是否只包含数字
30
+ * @param str
31
+ */
32
+ export declare function isNumeric(str: string): boolean;