UNPKG

buntralino

Version:

Bun library for Buntralino. Buntralino unites Bun and Neutralino.js to make a simpler, lighter alternative to Electron and NW.js. Use Neutralino.js API at client and send harder tasks to Bun while keeping your development process easy.

4 lines (3 loc) 234 B
export type PromiseResolveCallback = (value: void | PromiseLike<void>) => void; export type PromiseRejectCallback = (reason?: Error) => void; export const evalsMap = new Map<string, [PromiseResolveCallback, PromiseRejectCallback]>();