Skip to content

Commit

Permalink
Move comment
Browse files Browse the repository at this point in the history
  • Loading branch information
thsparks committed Sep 11, 2024
1 parent 108a2ba commit 201f520
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion teachertool/src/types/criteriaParameters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 201f520

Please sign in to comment.