| 1 | interface ArrayMetadataItem { |
| 2 | id: string; |
| 3 | family: string; |
| 4 | subsets: string[]; |
| 5 | weights: number[]; |
| 6 | styles: string[]; |
| 7 | defSubset: string; |
| 8 | variable: boolean; |
| 9 | lastModified: string; |
| 10 | category: string; |
| 11 | license: string; |
| 12 | type: string; |
| 13 | } |
| 14 | |
| 15 | type ArrayMetadata = ArrayMetadataItem[]; |
| 16 |
nothing calls this directly
no outgoing calls
no test coverage detected