| 9 | import { printError } from './utils/printError'; |
| 10 | |
| 11 | export interface IFileReadOptions { |
| 12 | encoding: 'ascii' | 'utf8' | 'utf-8' | 'utf16le' | 'ucs2' | 'ucs-2' | 'base64' | 'latin1' | 'binary' | 'hex'; |
| 13 | } |
| 14 | |
| 15 | export interface IReadOptions extends IFileReadOptions { |
| 16 | timeout?: number; |
nothing calls this directly
no outgoing calls
no test coverage detected