Member Junction
    Preparing search index...

    The minimal board surface WhiteboardSyncCoordinator needs — satisfied by WhiteboardState from @memberjunction/ng-whiteboard, but declared structurally here so the coordinator stays pure (no Angular / whiteboard import) and unit-testable with a fake board.

    interface SyncableBoard {
        Changed$: Observable<unknown>;
        LoadFromJSON(json: string): boolean;
        ToJSON(): string;
    }
    Index

    Properties

    Methods

    Properties

    Changed$: Observable<unknown>

    Emits whenever the board changes (the trigger to broadcast).

    Methods

    • Rehydrates the board from a JSON snapshot in place.

      Parameters

      • json: string

      Returns boolean