aboutsummaryrefslogtreecommitdiff
path: root/packages/memory-graph/src/index.tsx
blob: f32f29bf28dc8dc8cc17b672f68d0b0dd5de1b38 (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"