mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-12-02 12:25:20 +01: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);
|
|
}
|