(
classes:
| {[className: string]: boolean | undefined | null}
| string
| string[]
| Set<string>
| undefined
| null
| NO_CHANGE,
)
| 168 | * @codeGenApi |
| 169 | */ |
| 170 | export function ɵɵclassMap( |
| 171 | classes: |
| 172 | | {[className: string]: boolean | undefined | null} |
| 173 | | string |
| 174 | | string[] |
| 175 | | Set<string> |
| 176 | | undefined |
| 177 | | null |
| 178 | | NO_CHANGE, |
| 179 | ): void { |
| 180 | checkStylingMap(classKeyValueArraySet, classStringParser, classes, true); |
| 181 | } |
| 182 | |
| 183 | /** |
| 184 | * Parse text as class and add values to KeyValueArray. |
no test coverage detected