interface Window { Nps: (params: INpsSetupParams) => { setConfig(key_fields: IObject, tag: IObject, type?: 'popup' | 'modal', endpoint: string = 'https://nps.eduzz.com'): void } } declare var Nps: Window['Nps']; interface INpsSetupParams { key_fields: IObject; tag: IObject; type?: 'popup' | 'modal'; endpoint?: string; } interface IObject { [key: T] : S; }