mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-19 21:04:56 +02:00
7 lines
208 B
TypeScript
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);
|
|
}
|