Files
llama.cpp/tools/ui/src/lib/enums/boolean-string.enums.ts
T

6 lines
151 B
TypeScript

/** String representation of a boolean used in data attributes and persisted values. */
export enum BooleanString {
FALSE = 'false',
TRUE = 'true'
}