@thescaffold/jsx-flags 0.2.21 → 0.2.30
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/common/init/config.d.ts +1 -0
- package/common/utils/functions.d.ts +1 -1
- package/jsx-flags.cjs.development.js +189 -394
- package/jsx-flags.cjs.development.js.map +1 -1
- package/jsx-flags.cjs.production.min.js +1 -1
- package/jsx-flags.cjs.production.min.js.map +1 -1
- package/jsx-flags.esm.js +189 -394
- package/jsx-flags.esm.js.map +1 -1
- package/package.json +1 -1
package/common/init/config.d.ts
CHANGED
|
@@ -6,5 +6,5 @@ export declare const recursiveMerge: (target: any, ...sources: any[]) => any;
|
|
|
6
6
|
export declare const managedLog: (title: string, message: any, config: Config, ...types: LogType[]) => void;
|
|
7
7
|
export declare const sleep: (ms: number) => Promise<unknown>;
|
|
8
8
|
export declare const isFunction: (value: any) => boolean;
|
|
9
|
-
export declare const isString: (value: any) =>
|
|
9
|
+
export declare const isString: (value: any) => value is string;
|
|
10
10
|
export declare const arrayDepth: (value: any) => number;
|