12 lines
284 B
TypeScript
12 lines
284 B
TypeScript
export default reader
|
|
export type ErrnoException = import('./errors.js').ErrnoException
|
|
declare namespace reader {
|
|
export {read}
|
|
}
|
|
/**
|
|
* @param {string} jsonPath
|
|
* @returns {{string: string|undefined}}
|
|
*/
|
|
declare function read(jsonPath: string): {
|
|
string: string | undefined
|
|
}
|