File size: 229 Bytes
e8a6c67
 
 
 
 
 
 
1
2
3
4
5
6
7
8
/** Cross-component highlight state — Svelte 5 rune-based store. */
class CitationState {
  active = $state<string | null>(null);
  highlightDocId = $state<string | null>(null);
}

export const citations = new CitationState();