namespacepeekfunction peek<T = undefined>(promise: T | Promise<T>): T | Promise<T>;Extract the value from the Promise in the same tick of the event loopnamespace peekfunction status<T = undefined>(promise: T | Promise<T>): 'pending' | 'fulfilled' | 'rejected';Read a promise's state without awaiting it: "pending", "fulfilled", or "rejected".