MCPcopy Create free account
hub / github.com/PenguLoader/PenguLoader / DataStore

Interface DataStore

plugins/src/types.d.ts:42–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40}
41
42interface DataStore {
43 has: (key: string) => boolean
44 get: <T>(key: string, fallback?: T) => T | undefined
45 set: (key: string, value: any) => boolean
46 remove: (key: string) => boolean
47}
48
49interface ApplyEffectFn {
50 (type: 'transparent' | 'blurbehind' | 'acrylic' | 'unified', options?: { color: string }): void

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected