export interface JimoSDK { push: (params: Array) => Promise; } export interface JimoClient { initialized: boolean; client: () => JimoSDK | any[]; }