diff options
Diffstat (limited to 'cli/dts/lib.deno.unstable.d.ts')
-rw-r--r-- | cli/dts/lib.deno.unstable.d.ts | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index 898f06f37..f13b55aba 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -1378,10 +1378,8 @@ declare interface WorkerOptions { /** The format of the net access list must be `hostname[:port]` * in order to be resolved. * - * ``` - * net: ["https://deno.land", "localhost:8080"], - * ``` - * */ + * For example: `["https://deno.land", "localhost:8080"]`. + */ net?: "inherit" | boolean | string[]; plugin?: "inherit" | boolean; read?: "inherit" | boolean | Array<string | URL>; |