@naturalcycles/js-lib 14.113.1 → 14.114.0
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/types.d.ts +2 -0
- package/package.json +1 -1
- package/src/types.ts +3 -0
package/dist/types.d.ts
CHANGED
|
@@ -163,6 +163,8 @@ export declare type UnixTimestamp = number;
|
|
|
163
163
|
* Same as `number`, but with semantic meaning that it's an Integer.
|
|
164
164
|
*/
|
|
165
165
|
export declare type Integer = number;
|
|
166
|
+
export declare type Base64String = string;
|
|
167
|
+
export declare type Base64UrlString = string;
|
|
166
168
|
/**
|
|
167
169
|
* Named type for JSON.parse / JSON.stringify second argument
|
|
168
170
|
*/
|
package/package.json
CHANGED
package/src/types.ts
CHANGED