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