UNPKG

@cuba-platform/front-generator

Version:
12 lines (11 loc) 323 B
/// <reference types="node" /> import * as fs from 'fs'; import { Options } from './managers/options'; /** * Asynchronous API. */ export declare function stat(path: fs.PathLike, opts?: Options): Promise<fs.Stats>; /** * Synchronous API. */ export declare function statSync(path: fs.PathLike, opts?: Options): fs.Stats;