export interface IBaseApi { setReadOnly: (readonly?: boolean) => void; on: (event: string, callback: (...args: any[]) => void, once?: boolean) => void; }