Files
DefinitelyTyped/types/google.fonts/google.fonts-tests.ts
2017-03-24 14:27:52 -07:00

16 lines
269 B
TypeScript

function test(list: google.fonts.WebfontList) {
const f = list.items[0];
const info = [
f.category,
f.family,
f.kind,
f.subsets.length,
f.version
];
const urls = f.variants.map(
v => f.files[v]
);
}