@gathertown/uikit-react-native
Version:
Sendbird UIKit for React Native: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.
30 lines (29 loc) • 1.01 kB
TypeScript
import type { ErrorInfo, ReactNode } from 'react';
import type { SendbirdUser } from '@gathertown/uikit-utils';
export type KeyValuePairGet = [string, string | null];
export type KeyValuePairSet = [string, string];
export interface LocalCacheStorage {
getAllKeys(): Promise<readonly string[] | string[]>;
getItem(key: string): Promise<string | null>;
setItem(key: string, value: string): Promise<void>;
removeItem(key: string): Promise<void>;
multiSet?(keyValuePairs: Array<KeyValuePairSet>): Promise<void>;
multiGet?(keys: string[]): Promise<readonly KeyValuePairGet[] | KeyValuePairGet[]>;
multiRemove?(keys: string[]): Promise<void>;
}
export type ErrorBoundaryProps = {
error: Error;
errorInfo: ErrorInfo;
reset: () => void;
};
export type CommonComponent<P = {}> = (props: P & {
children?: ReactNode;
}) => null | JSX.Element;
export type MentionedUser = {
range: Range;
user: SendbirdUser;
};
export type Range = {
start: number;
end: number;
};