web_plsql
Version:
The Express Middleware for Oracle PL/SQL
7 lines (6 loc) • 370 B
TypeScript
export function readFileSyncUtf8(filePath: string): string;
export function readFile(filePath: string): Promise<Buffer>;
export function removeFile(filePath: string): Promise<void>;
export function getJsonFile(filePath: string): unknown;
export function isDirectory(directoryPath: unknown): Promise<boolean>;
export function isFile(filePath: unknown): Promise<boolean>;