1import { feature } from 'bun:bundle'
2
3export const MEMORY_TYPE_VALUES = [
4 'User',
5 'Project',
6 'Local',
7 'Managed',
8 'AutoMem',
9 ...(feature('TEAMMEM') ? (['TeamMem'] as const) : []),
10] as const
11
12export type MemoryType = (typeof MEMORY_TYPE_VALUES)[number]