Deno.FfiPermissionDescriptor

The permission descriptor for the allow-ffi and deny-ffi permissions, which controls access to loading foreign code and interfacing with it via the Foreign Function Interface API available in Deno. The option path allows scoping the permission to a specific path on the host.

interface FfiPermissionDescriptor {
name: "ffi";
path?: string | URL;
}

§Properties

§
name: "ffi"
[src]
§
path?: string | URL
[src]

Optional path on the local host to scope the permission to.