mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-29 00:51:29 +08:00
16 lines
269 B
TypeScript
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]
|
|
);
|
|
}
|