kompendium
Version:
Documentation generator for Stencil components
8 lines (7 loc) • 429 B
TypeScript
/// <reference types="node" />
import fs from 'fs';
export declare function exists(path: string): Promise<boolean>;
export declare function mkdir(path: string, options?: any): Promise<string>;
export declare function readFile(path: string, options?: any): Promise<string>;
export declare function writeFile(path: string, data: string, options?: any): Promise<void>;
export declare function stat(path: string): Promise<fs.Stats>;