MCPcopy Index your code
hub / github.com/SyntaxUI/syntaxui / StarStore

Interface StarStore

src/store.ts:3–6  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import { create } from 'zustand'
2
3interface StarStore {
4 stars: number
5 setStars: (count: number) => void
6}
7
8export const useStarStore = create<StarStore>((set) => ({
9 stars: 100,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected