getTrainingV2ByType function exported ✓ 100.0%
Last updated: 2026-02-24T21:07:57.576Z
Metrics
LOC: 3
Complexity: 1
Params: 1
Coverage: 100.0% (1/1 lines, 1x executed)
Signature
getTrainingV2ByType(type: FieldType): : TrainingSample[]
Summary
Filters V2 training samples by field type.
Source Code
export function getTrainingV2ByType(type: FieldType): TrainingSample[] {
return TRAINING_SAMPLES_V2.filter((sample) => sample.type === type);
}
No outgoing dependencies.
No incoming dependencies.