A self hosted solution for privately rating and reviewing different sorts of media
at master 175 B view raw
1import { UserEntryStatus } from '@prisma/client'; 2 3export const UserEntryStatusArray: UserEntryStatus[] = [ 4 'planning', 5 'completed', 6 'dnf', 7 'paused', 8 'watching', 9];