UNPKG

yahoo-finance2

Version:
17 lines (16 loc) 454 B
import moduleExec from "./moduleExec"; export interface ModuleOptions { validateResult?: boolean; devel?: boolean | string; fetchOptions?: object; } export interface ModuleOptionsWithValidateFalse extends ModuleOptions { validateResult: false; } export interface ModuleOptionsWithValidateTrue extends ModuleOptions { validateResult?: true; } export interface ModuleThis { [key: string]: any; _moduleExec: typeof moduleExec; }