Files
klz-cables.com/.pnpm-store/v10/files/e5/d059fa55f9f2eee3f6410bcef8f1bc8e370f27b36001417d795de450f92fa9a595367acd3528dbe307b9bebec1ebe4cf4b39182c5161a0d29b45f724e896dc
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

19 lines
627 B
Plaintext

/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
/// <reference types="react" />
import type { Doc } from 'yjs';
export type CollaborationContextType = {
clientID: number;
color: string;
isCollabActive: boolean;
name: string;
yjsDocMap: Map<string, Doc>;
};
export declare const CollaborationContext: import("react").Context<CollaborationContextType>;
export declare function useCollaborationContext(username?: string, color?: string): CollaborationContextType;