@cuba-platform/front-generator
Version:
CUBA Platform front-end clients generator
12 lines (11 loc) • 323 B
TypeScript
/// <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;