mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-23 21:02:24 +02:00
10 lines
281 B
TypeScript
10 lines
281 B
TypeScript
//
|
|
// Copyright @ 2024 Hardcore Engineering Inc.
|
|
//
|
|
|
|
import { type TrainingAttemptState, trainingAttemptStateOrder } from '@hcengineering/training'
|
|
|
|
export async function trainingAttemptStateAllValues (): Promise<TrainingAttemptState[]> {
|
|
return [...trainingAttemptStateOrder]
|
|
}
|