@wp-playground/client 3.1.35 → 3.1.38

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.
Files changed (4) hide show
  1. package/index.cjs +63 -63
  2. package/index.d.ts +3 -1
  3. package/index.js +2272 -2219
  4. package/package.json +2 -2
package/index.d.ts CHANGED
@@ -1832,6 +1832,8 @@ export declare class ErrnoError extends Error {
1832
1832
  node?: any;
1833
1833
  errno: number;
1834
1834
  }
1835
+ export declare const PHPNextVersion = "next";
1836
+ export type PHPNextVersion = typeof PHPNextVersion;
1835
1837
  export declare const SupportedPHPVersions: readonly [
1836
1838
  "8.5",
1837
1839
  "8.4",
@@ -1848,7 +1850,7 @@ declare const LegacyPHPVersions: readonly [
1848
1850
  "5.2"
1849
1851
  ];
1850
1852
  export type LegacyPHPVersion = (typeof LegacyPHPVersions)[number];
1851
- export type AllPHPVersion = SupportedPHPVersion | LegacyPHPVersion;
1853
+ export type AllPHPVersion = PHPNextVersion | SupportedPHPVersion | LegacyPHPVersion;
1852
1854
  export interface FileTree extends Record<string, Uint8Array | string | FileTree> {
1853
1855
  }
1854
1856
  /**