3 lines
129 B
TypeScript
3 lines
129 B
TypeScript
export const contentStates = ["published", "draft", "archived"] as const
|
|
export type ContentState = typeof contentStates[number]
|