modal 0.3.18 → 0.3.19
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/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -226,7 +226,7 @@ type ExecOptions = {
|
|
|
226
226
|
/** Timeout for the process in milliseconds. Defaults to 0 (no timeout). */
|
|
227
227
|
timeout?: number;
|
|
228
228
|
/** Secrets with environment variables for the command. */
|
|
229
|
-
secrets?: [
|
|
229
|
+
secrets?: Secret[];
|
|
230
230
|
};
|
|
231
231
|
/** A port forwarded from within a running Modal sandbox. */
|
|
232
232
|
declare class Tunnel {
|
package/dist/index.d.ts
CHANGED
|
@@ -226,7 +226,7 @@ type ExecOptions = {
|
|
|
226
226
|
/** Timeout for the process in milliseconds. Defaults to 0 (no timeout). */
|
|
227
227
|
timeout?: number;
|
|
228
228
|
/** Secrets with environment variables for the command. */
|
|
229
|
-
secrets?: [
|
|
229
|
+
secrets?: Secret[];
|
|
230
230
|
};
|
|
231
231
|
/** A port forwarded from within a running Modal sandbox. */
|
|
232
232
|
declare class Tunnel {
|