Welcome to mirror list, hosted at ThFree Co, Russian Federation.

constants.d.ts « node « @types « node_modules « assets - github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d124ae66c0a0da1cd0184f838d20bad689d61095 (plain)
1
2
3
4
5
6
7
8
/** @deprecated since v6.3.0 - use constants property exposed by the relevant module instead. */
declare module "constants" {
    import { constants as osConstants, SignalConstants } from 'os';
    import { constants as cryptoConstants } from 'crypto';
    import { constants as fsConstants } from 'fs';
    const exp: typeof osConstants.errno & typeof osConstants.priority & SignalConstants & typeof cryptoConstants & typeof fsConstants;
    export = exp;
}