MCPcopy Create free account
hub / github.com/vercel/examples /

Class

apps/vibe-coding-platform/lib/deferred.ts:1–1  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1export class Deferred<T> {
2 private resolveFn: (value: T | PromiseLike<T>) => void = () => {}
3 private rejectFn: (reason?: any) => void = () => {}
4 private _promise: Promise<T>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected