You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.1 KiB
33 lines
1.1 KiB
// tslint:disable-next-line:no-bad-reference
|
|
/// <reference path="../fs.d.ts" />
|
|
|
|
declare module 'fs' {
|
|
interface BigIntStats extends StatsBase<bigint> {
|
|
}
|
|
|
|
class BigIntStats {
|
|
atimeNs: bigint;
|
|
mtimeNs: bigint;
|
|
ctimeNs: bigint;
|
|
birthtimeNs: bigint;
|
|
}
|
|
|
|
interface BigIntOptions {
|
|
bigint: true;
|
|
}
|
|
|
|
interface StatOptions {
|
|
bigint: boolean;
|
|
}
|
|
|
|
function stat(path: PathLike, options: BigIntOptions, callback: (err: NodeJS.ErrnoException | null, stats: BigIntStats) => void): void;
|
|
function stat(path: PathLike, options: StatOptions, callback: (err: NodeJS.ErrnoException | null, stats: Stats | BigIntStats) => void): void;
|
|
|
|
namespace stat {
|
|
function __promisify__(path: PathLike, options: BigIntOptions): Promise<BigIntStats>;
|
|
function __promisify__(path: PathLike, options: StatOptions): Promise<Stats | BigIntStats>;
|
|
}
|
|
|
|
function statSync(path: PathLike, options: BigIntOptions): BigIntStats;
|
|
function statSync(path: PathLike, options: StatOptions): Stats | BigIntStats;
|
|
}
|
|
|