This commit is contained in:
Michael Telatynski
2025-07-24 16:27:09 +01:00
parent 9f14297827
commit 9c2ca140bb
5 changed files with 40 additions and 1 deletions
@@ -283,6 +283,7 @@ export type OriginalMessageComponentProps = {
// @public
export interface Profile {
displayName?: string;
isGuest?: boolean;
userId?: string;
}
@@ -312,6 +313,9 @@ export interface UserIdentifierCustomisations {
}): string | null;
}
// @public
export function useWatchable<T>(watchable: Watchable<T>): T;
// @public
export type Variables = {
count?: number;