export const PlaylistStep = { Edit: 'edit', Delete: 'delete', DeleteVideo: 'delete-video', } as const; export type PlaylistStep = typeof PlaylistStep[keyof typeof PlaylistStep];