| 33 | * root of JSON file (default values) |
| 34 | */ |
| 35 | export interface IconifyTransformations { |
| 36 | // Number of 90 degrees rotations. |
| 37 | // 0 = 0, 1 = 90deg and so on. |
| 38 | // Defaults to 0. |
| 39 | // When merged (such as alias + icon), result is icon.rotation + alias.rotation. |
| 40 | rotate?: number; |
| 41 | |
| 42 | // Horizontal flip. |
| 43 | // Defaults to false. |
| 44 | // When merged, result is icon.hFlip !== alias.hFlip |
| 45 | hFlip?: boolean; |
| 46 | |
| 47 | // Vertical flip. (see hFlip comments) |
| 48 | vFlip?: boolean; |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Combination of dimensions and transformations. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…