@wp-playground/client 0.6.3 → 0.6.4
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/index.cjs +22 -22
- package/index.d.ts +4 -0
- package/index.js +1088 -942
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -657,6 +657,10 @@ export interface PHPRunOptions {
|
|
|
657
657
|
* Request body.
|
|
658
658
|
*/
|
|
659
659
|
body?: string | Uint8Array;
|
|
660
|
+
/**
|
|
661
|
+
* Environment variables to set for this run.
|
|
662
|
+
*/
|
|
663
|
+
env?: Record<string, string>;
|
|
660
664
|
/**
|
|
661
665
|
* The code snippet to eval instead of a php file.
|
|
662
666
|
*/
|