1 | import { Options as Opts, Config } from "./util/Options";
|
2 | import EyeglassImpl from "./Eyeglass";
|
3 | interface AdditionalFunctions {
|
4 | resetGlobalCaches(): void;
|
5 | }
|
6 | declare type PublicConstructor = typeof EyeglassImpl & AdditionalFunctions & ((options: Opts) => Config);
|
7 | declare type Eyeglass = EyeglassImpl;
|
8 | declare const Eyeglass: PublicConstructor;
|
9 | declare namespace Eyeglass {
|
10 | type EyeglassOptions = Opts;
|
11 | type EyeglassConfig = Config;
|
12 | }
|
13 | export = Eyeglass;
|
14 | //# sourceMappingURL=index.d.ts.map |
\ | No newline at end of file |