UNPKG

lcinterface

Version:

An easy way to interact with the league client. This module is basically a middle layer between your app and the league client

15 lines (9 loc) 300 B
declare class FileWatcher { constructor(path: string) stop(): void start(): void on(event: "create", listner: (path: string) => void): this on(event: "change", listner: (path: string) => void): this on(event: "remove", listner: () => void): this } export = FileWatcher