@wp-playground/blueprints 0.6.3 → 0.6.5
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 +13 -13
- package/index.d.ts +4 -0
- package/index.js +442 -402
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -643,6 +643,10 @@ export interface PHPRunOptions {
|
|
|
643
643
|
* Request body.
|
|
644
644
|
*/
|
|
645
645
|
body?: string | Uint8Array;
|
|
646
|
+
/**
|
|
647
|
+
* Environment variables to set for this run.
|
|
648
|
+
*/
|
|
649
|
+
env?: Record<string, string>;
|
|
646
650
|
/**
|
|
647
651
|
* The code snippet to eval instead of a php file.
|
|
648
652
|
*/
|