UNPKG

meblog

Version:

A simple blog engine for personal blogging

9 lines (8 loc) 338 B
export default class FileUtils { static readFile(filePath: string): string; static isExists(filePath: string): boolean; static checkExists(filePath: string): void; static basename(filePath: string, ext?: string): string; static basenameWithoutExt(filePath: string): string; static ext(filePath: string): string; }