We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4faec88 commit b5070dfCopy full SHA for b5070df
src/stdlib/Os.fs
@@ -6,9 +6,14 @@ open Fable.Core
6
// fsharplint:disable MemberNames
7
8
type IExports =
9
+ abstract chdir : string -> unit
10
+ abstract chroot : string -> unit
11
+ abstract close : fd: int -> unit
12
abstract environ : Dictionary<string, string>
13
+ abstract getcwd : unit -> string
14
abstract getenv : key: string -> string option
15
abstract getenv : key: string * ``default``: string -> string
16
+ abstract kill : pid: int * ``sig``: int -> unit
17
abstract putenv : key: string * value: string -> unit
18
19
0 commit comments