x-runtime-lib 0.8.35 → 0.8.36

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.
@@ -1,5 +1,6 @@
1
1
  export type Env = 'dev' | 'prod';
2
2
  export type Mode = 'runtime' | 'preview' | 'editor';
3
+ export declare function isExecutableMode(mode: Mode): mode is "runtime" | "preview";
3
4
  export declare const types: readonly ["string", "number", "boolean", "array", "object"];
4
5
  export type Type = (typeof types)[number];
5
6
  export declare function getTypeColor(type: Type): string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "x-runtime-lib",
3
3
  "private": false,
4
- "version": "0.8.35",
4
+ "version": "0.8.36",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",
7
7
  "types": "dist/index.d.ts",