File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ export interface CreateCodeContextOpts {
8888 *
8989 * @default python
9090 */
91- language ?: 'python' | 'javascript' | 'typescript' | 'r' | 'java' | 'bash' | ( string & { } )
91+ language ?: 'python' | 'javascript' | 'typescript' | 'r' | 'java' | 'bash' | ( string & NonNullable < unknown > )
9292 /**
9393 * Timeout for the request in **milliseconds**.
9494 *
@@ -149,7 +149,7 @@ export class Sandbox extends BaseSandbox {
149149 *
150150 * If not defined, the default Python context is used.
151151 */
152- language ?: 'python' | 'javascript' | 'typescript' | 'r' | 'java' | 'bash' | ( string & { } )
152+ language ?: 'python' | 'javascript' | 'typescript' | 'r' | 'java' | 'bash' | ( string & NonNullable < unknown > )
153153 }
154154 ) : Promise < Execution >
155155 /**
You can’t perform that action at this time.
0 commit comments