export const PlaylistType = { Public: 'public', Private: 'private', } as const; export type PlaylistType = typeof PlaylistType[keyof typeof PlaylistType]; export const PLAYLIST_TYPE_ICON: Record = { [PlaylistType.Public]: 'earth', [PlaylistType.Private]: 'lock', };