export const EntryStates = { APPLIED: 'APPLIED', SKIPPED: 'SKIPPED', IGNORED: 'IGNORED', REMOVED: 'REMOVED', PENDING: 'PENDING', } as const; export type EntryState = (typeof EntryStates)[keyof typeof EntryStates];