@sheetwrite/coretype
Predicate used to decide whether a conditional format applies.
Variants 5
{ kind: "greaterThan"; value: number }{ kind: "lessThan"; value: number }{ kind: "contains"; text: string; matchCase?: boolean }{ kind: "formula"; source: string }Declaration
View full TypeScript declaration
export type ConditionalFormatPredicate = | { kind: "greaterThan"; value: number; } | { kind: "lessThan"; value: number; } | { kind: "equal"; } | { kind: "contains"; text: string; matchCase?: boolean; } | { kind: "formula"; source: string; };