mirror of
https://github.com/fanchenio/DawnLauncher.git
synced 2025-07-14 05:12:11 +08:00
50 lines
857 B
JavaScript
50 lines
857 B
JavaScript
import * as Addon from './addon.node'
|
|
|
|
const {
|
|
getFileIcon,
|
|
searchPath,
|
|
getShortcutFileInfo,
|
|
shellExecute,
|
|
systemItemExecute,
|
|
openFileLocation,
|
|
explorerContextMenu,
|
|
getEnvByName,
|
|
isFullscreen,
|
|
switchEnglish,
|
|
createMouseHook,
|
|
enableMouseHook,
|
|
disableMouseHook,
|
|
getCursorPosWindowClassName,
|
|
getClipboardFileList,
|
|
clipboardHasBitmap,
|
|
getClipboardBitmapBase64,
|
|
emptyRecycleBin,
|
|
removeWindowAnimation,
|
|
getAppxList,
|
|
} = Addon
|
|
|
|
export default Addon
|
|
|
|
export {
|
|
getFileIcon,
|
|
searchPath,
|
|
getShortcutFileInfo,
|
|
shellExecute,
|
|
systemItemExecute,
|
|
openFileLocation,
|
|
explorerContextMenu,
|
|
getEnvByName,
|
|
isFullscreen,
|
|
switchEnglish,
|
|
createMouseHook,
|
|
enableMouseHook,
|
|
disableMouseHook,
|
|
getCursorPosWindowClassName,
|
|
getClipboardFileList,
|
|
clipboardHasBitmap,
|
|
getClipboardBitmapBase64,
|
|
emptyRecycleBin,
|
|
removeWindowAnimation,
|
|
getAppxList,
|
|
}
|