/****************************************************************************** * * (C) 2022 AhnLab Blockchain Company, Inc. All rights reserved. * Any part of this source code can not be copied with any method without * prior written permission from the author or authorized person. * ******************************************************************************/ export default class ExtensionPlatform { reload(): void; openTab(options: any): Promise; openWindow(options: any): Promise; focusWindow(windowId: any): Promise; updateWindowPosition(windowId: any, left: any, top: any): Promise; getLastFocusedWindow(): Promise; closeCurrentWindow(): any; getVersion(): any; getAllWindows(): Promise; getActiveTabs(): Promise; currentTab(): Promise; switchToTab(tabId: any): Promise; }