File size: 200 Bytes
1e92f2d
 
 
 
 
 
1
2
3
4
5
6
7
/**
 * Create a "Thenable" that does not resolve. This is used to suspend indefinitely when data is not available yet.
 */
export const unresolvedThenable = {
  then: () => {},
} as PromiseLike<void>