# Installation
> `npm install --save @types/google.fonts`

# Summary
This package contains type definitions for Google Fonts API (https://developers.google.com/fonts/).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/google.fonts.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/google.fonts/index.d.ts)
````ts
// Type definitions for non-npm package Google Fonts API 1.0
// Project: https://developers.google.com/fonts/
// Definitions by: Dan Marshall <https://github.com/danmarshall>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

declare namespace google.fonts {
    interface WebfontList {
        kind: string;
        items: WebfontFamily[];
    }

    interface WebfontFamily {
        category?: string | undefined;
        kind: string;
        family: string;
        subsets: string[];
        variants: string[];
        version: string;
        lastModified: string;
        files: { [variant: string]: string };
    }
}

````

### Additional Details
 * Last updated: Thu, 08 Jul 2021 12:02:26 GMT
 * Dependencies: none
 * Global values: none

# Credits
These definitions were written by [Dan Marshall](https://github.com/danmarshall).
