7 lines
208 B
TypeScript
Raw Normal View History

2024-07-07 18:49:38 -07:00
import type Settings from '../settings';
export default class Reader {
protected readonly _root: string;
protected readonly _settings: Settings;
constructor(_root: string, _settings: Settings);
}