wox-ts
v1.0.0
Published
Node wrapper and library for Wox
Downloads
1
Readme
This is a light TypeScript wrapper around Wox.
Implement a handler by implementing interface IWoxQueryHandler
, then instantiate and run a processor using:
const processor = new WoxQueryProcessor(handler, logger);
processor.processFromCommandLineAsync(process.argv)
.then(() => { })
.catch((err) => {
console.error("Failed execution: ", err)
return -1
})
See the Wox adapter for Microsoft Graph for an example