@idraw/util 1.0.0-alpha.1 → 1.0.0-alpha.3
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/esm/view/is.d.ts +4 -4
- package/dist/index.global.js +6246 -6327
- package/dist/index.global.min.js +1 -1
- package/package.json +1 -1
package/dist/esm/view/is.d.ts
CHANGED
|
@@ -16,12 +16,12 @@ declare function html(value: any): boolean;
|
|
|
16
16
|
declare function text(value: any): value is string;
|
|
17
17
|
declare function fontSize(value: any): boolean;
|
|
18
18
|
declare function lineHeight(value: any): boolean;
|
|
19
|
-
declare function textAlign(value: any):
|
|
19
|
+
declare function textAlign(value: any): any;
|
|
20
20
|
declare function fontFamily(value: any): boolean;
|
|
21
|
-
declare function fontWeight(value: any):
|
|
21
|
+
declare function fontWeight(value: any): any;
|
|
22
22
|
declare function numberStr(value: any): boolean;
|
|
23
|
-
declare function type(value: any):
|
|
24
|
-
declare function material(mtrl: any):
|
|
23
|
+
declare function type(value: any): any;
|
|
24
|
+
declare function material(mtrl: any): any;
|
|
25
25
|
declare function layout(value: any): boolean;
|
|
26
26
|
declare function data(d: any): boolean;
|
|
27
27
|
export declare const is: {
|