import { execute } from'./execute';
/**
* Return a promise that never fulfills and only rejects with `AbortError` once
* `signal` is aborted.
*/exportfunctionforever(signal) {
returnexecute(signal, () =>() => { });
}
//# sourceMappingURL=forever.js.map