Files
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

7 lines
208 B
TypeScript

import type Settings from '../settings';
export default class Reader {
protected readonly _root: string;
protected readonly _settings: Settings;
constructor(_root: string, _settings: Settings);
}