"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); // export function fromPromise( // promise: Promise, // options?: InvokedPromiseOptions // ): any { // const optionsWithDefaults = { // id: 'promise', // ...options // }; // return Machine({ // id: optionsWithDefaults.id, // initial: 'pending', // states: { // pending: {}, // resolved: {}, // rejected: {} // } // }); // }