1.0.5 • Published 2 years ago

@types/google.fonts v1.0.5

Weekly downloads
156
License
MIT
Repository
github
Last release
2 years ago

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

// 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.

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

4 years ago

1.0.2

6 years ago

1.0.1

8 years ago

1.0.0

8 years ago