@sendbird/uikit-react-native
Version:
Sendbird UIKit for React Native: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.
8 lines (7 loc) • 367 B
TypeScript
import 'react-native';
export declare const PromisePolyfill: {
allSettled<T extends readonly unknown[] | []>(values: T): Promise<{ -readonly [P in keyof T]: PromiseSettledResult<Awaited<T[P]>>; }>;
race<T>(values: Iterable<T | PromiseLike<T>>): Promise<Awaited<T>>;
any<T>(values: Iterable<T | PromiseLike<T>>): Promise<Awaited<T>>;
apply(): void;
};