rangoo94/bestest

View on GitHub
packages/node-module-sandbox/lib/interfaces/FsInterface.ts

Summary

Maintainability
A
0 mins
Test Coverage
interface FsInterface {
  statSync: (filePath: string) => any
  existsSync: (filePath: string) => boolean
  realpathSync: (filePath: string) => string
  readFileSync: (filePath: string, encoding?: string) => any
}

export {
  FsInterface
}