Deno.UnstableRunOptionsUNSTABLE: New API, yet to be vetted. These are unstable options which can be used with Deno.run. interface UnstableRunOptions extends RunOptions {clearEnv?: boolean;gid?: number;uid?: number;}§Extends§RunOptions[src]§Properties§clearEnv?: boolean[src]If true, clears the environment variables before executing the sub-process. §gid?: number[src]For POSIX systems, sets the group ID for the sub process. §uid?: number[src]For POSIX systems, sets the user ID for the sub process.