From 201f520e3ed27577c63dabe448a1bf52e618ac1f Mon Sep 17 00:00:00 2001 From: thsparks Date: Wed, 11 Sep 2024 15:50:06 -0700 Subject: [PATCH] Move comment --- teachertool/src/types/criteriaParameters.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/teachertool/src/types/criteriaParameters.ts b/teachertool/src/types/criteriaParameters.ts index 6840ce26b20..86e659a4b5f 100644 --- a/teachertool/src/types/criteriaParameters.ts +++ b/teachertool/src/types/criteriaParameters.ts @@ -2,12 +2,14 @@ import { Strings } from "../constants"; import { logError } from "../services/loggingService"; import { ErrorCode } from "./errorCode"; -// Represents a parameter definition in a catalog criteria. export type CriteriaParameterType = "string" | "longString" | "number" | "block" | "system"; + export interface CriteriaParameterValidationResult { valid: boolean; message?: string }; + +// Represents a parameter definition in a catalog criteria. export class CriteriaParameter { name: string; type: CriteriaParameterType;