5 lines
270 B
TypeScript
5 lines
270 B
TypeScript
import { ENodeType } from './interfaces.js';
|
|
export declare function validateInput(methodName: string, path: string): void;
|
|
export declare function sync(path: string): boolean | string;
|
|
export declare function async(path: string): Promise<boolean | string | ENodeType>;
|