aboutsummaryrefslogtreecommitdiff
path: root/packages/memory-graph/src/index.tsx
blob: 6e5c882f6a6525bc7f333de5c5867eacbeceea57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Export the main component
export { MemoryGraph } from "./components/memory-graph";

// Export style injector for manual use if needed
export { injectStyles } from "./lib/inject-styles";

// Export types for consumers
export type { MemoryGraphProps } from "./types";

export type {
	DocumentWithMemories,
	MemoryEntry,
	DocumentsResponse,
} from "./api-types";

export type {
	GraphNode,
	GraphEdge,
	MemoryRelation,
} from "./types";

// Export theme system for custom theming
export { themeContract, defaultTheme } from "./styles/theme.css";
export { sprinkles } from "./styles/sprinkles.css";
export type { Sprinkles } from "./styles/sprinkles.css";