2020-03-08 19:14:53 -04:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
2020-03-15 11:48:46 -04:00
|
|
|
import { access, accessSync } from "./_fs/_fs_access.ts";
|
2020-03-08 19:14:53 -04:00
|
|
|
import { appendFile, appendFileSync } from "./_fs/_fs_appendFile.ts";
|
2020-03-14 17:46:39 -04:00
|
|
|
import { chmod, chmodSync } from "./_fs/_fs_chmod.ts";
|
2020-03-15 11:48:46 -04:00
|
|
|
import { chown, chownSync } from "./_fs/_fs_chown.ts";
|
|
|
|
import { close, closeSync } from "./_fs/_fs_close.ts";
|
2020-03-14 17:46:39 -04:00
|
|
|
import * as constants from "./_fs/_fs_constants.ts";
|
2020-03-15 11:48:46 -04:00
|
|
|
import { readFile, readFileSync } from "./_fs/_fs_readFile.ts";
|
|
|
|
import { readlink, readlinkSync } from "./_fs/_fs_readlink.ts";
|
|
|
|
|
|
|
|
export {
|
|
|
|
access,
|
|
|
|
accessSync,
|
|
|
|
appendFile,
|
|
|
|
appendFileSync,
|
|
|
|
chmod,
|
|
|
|
chmodSync,
|
|
|
|
chown,
|
|
|
|
chownSync,
|
|
|
|
close,
|
|
|
|
closeSync,
|
|
|
|
constants,
|
|
|
|
readFile,
|
|
|
|
readFileSync,
|
|
|
|
readlink,
|
2020-03-28 13:03:49 -04:00
|
|
|
readlinkSync,
|
2020-03-15 11:48:46 -04:00
|
|
|
};
|