mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-21 18:48:37 +00:00
6 lines
208 B
TypeScript
6 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);
|
|
}
|