mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
fix(types): missing import
permission on PermissionOptionsObject
(#26627)
This commit is contained in:
parent
9a39a98b57
commit
d55e30f418
37
cli/tsc/dts/lib.deno.ns.d.ts
vendored
37
cli/tsc/dts/lib.deno.ns.d.ts
vendored
@ -556,14 +556,23 @@ declare namespace Deno {
|
|||||||
*/
|
*/
|
||||||
env?: "inherit" | boolean | string[];
|
env?: "inherit" | boolean | string[];
|
||||||
|
|
||||||
/** Specifies if the `sys` permission should be requested or revoked.
|
/** Specifies if the `ffi` permission should be requested or revoked.
|
||||||
* If set to `"inherit"`, the current `sys` permission will be inherited.
|
* If set to `"inherit"`, the current `ffi` permission will be inherited.
|
||||||
* If set to `true`, the global `sys` permission will be requested.
|
* If set to `true`, the global `ffi` permission will be requested.
|
||||||
* If set to `false`, the global `sys` permission will be revoked.
|
* If set to `false`, the global `ffi` permission will be revoked.
|
||||||
*
|
*
|
||||||
* @default {false}
|
* @default {false}
|
||||||
*/
|
*/
|
||||||
sys?: "inherit" | boolean | string[];
|
ffi?: "inherit" | boolean | Array<string | URL>;
|
||||||
|
|
||||||
|
/** Specifies if the `import` permission should be requested or revoked.
|
||||||
|
* If set to `"inherit"` the current `import` permission will be inherited.
|
||||||
|
* If set to `true`, the global `import` permission will be requested.
|
||||||
|
* If set to `false`, the global `import` permission will be revoked.
|
||||||
|
* If set to `Array<string>`, the `import` permissions will be requested with the
|
||||||
|
* specified domains.
|
||||||
|
*/
|
||||||
|
import?: "inherit" | boolean | Array<string>;
|
||||||
|
|
||||||
/** Specifies if the `net` permission should be requested or revoked.
|
/** Specifies if the `net` permission should be requested or revoked.
|
||||||
* if set to `"inherit"`, the current `net` permission will be inherited.
|
* if set to `"inherit"`, the current `net` permission will be inherited.
|
||||||
@ -638,15 +647,6 @@ declare namespace Deno {
|
|||||||
*/
|
*/
|
||||||
net?: "inherit" | boolean | string[];
|
net?: "inherit" | boolean | string[];
|
||||||
|
|
||||||
/** Specifies if the `ffi` permission should be requested or revoked.
|
|
||||||
* If set to `"inherit"`, the current `ffi` permission will be inherited.
|
|
||||||
* If set to `true`, the global `ffi` permission will be requested.
|
|
||||||
* If set to `false`, the global `ffi` permission will be revoked.
|
|
||||||
*
|
|
||||||
* @default {false}
|
|
||||||
*/
|
|
||||||
ffi?: "inherit" | boolean | Array<string | URL>;
|
|
||||||
|
|
||||||
/** Specifies if the `read` permission should be requested or revoked.
|
/** Specifies if the `read` permission should be requested or revoked.
|
||||||
* If set to `"inherit"`, the current `read` permission will be inherited.
|
* If set to `"inherit"`, the current `read` permission will be inherited.
|
||||||
* If set to `true`, the global `read` permission will be requested.
|
* If set to `true`, the global `read` permission will be requested.
|
||||||
@ -667,6 +667,15 @@ declare namespace Deno {
|
|||||||
*/
|
*/
|
||||||
run?: "inherit" | boolean | Array<string | URL>;
|
run?: "inherit" | boolean | Array<string | URL>;
|
||||||
|
|
||||||
|
/** Specifies if the `sys` permission should be requested or revoked.
|
||||||
|
* If set to `"inherit"`, the current `sys` permission will be inherited.
|
||||||
|
* If set to `true`, the global `sys` permission will be requested.
|
||||||
|
* If set to `false`, the global `sys` permission will be revoked.
|
||||||
|
*
|
||||||
|
* @default {false}
|
||||||
|
*/
|
||||||
|
sys?: "inherit" | boolean | string[];
|
||||||
|
|
||||||
/** Specifies if the `write` permission should be requested or revoked.
|
/** Specifies if the `write` permission should be requested or revoked.
|
||||||
* If set to `"inherit"`, the current `write` permission will be inherited.
|
* If set to `"inherit"`, the current `write` permission will be inherited.
|
||||||
* If set to `true`, the global `write` permission will be requested.
|
* If set to `true`, the global `write` permission will be requested.
|
||||||
|
Loading…
Reference in New Issue
Block a user