umd-styles-library
    Preparing search index...

    Variable typographyFontFaceObjectConst

    typographyFontFaceObject: {
        "@font-face": {
            black: {
                fontFamily: string;
                fontStyle: string;
                fontWeight: number;
                src: string;
            };
            bold: {
                fontFamily: string;
                fontStyle: string;
                fontWeight: string;
                src: string;
            };
            boldItalic: {
                fontFamily: string;
                fontStyle: string;
                fontWeight: string;
                src: string;
            };
            extraLight: {
                fontFamily: string;
                fontStyle: string;
                fontWeight: number;
                src: string;
            };
            italic: {
                fontFamily: string;
                fontStyle: string;
                fontWeight: string;
                src: string;
            };
            light: {
                fontFamily: string;
                fontStyle: string;
                fontWeight: number;
                src: string;
            };
            regular: {
                fontFamily: string;
                fontStyle: string;
                fontWeight: string;
                src: string;
            };
            thin: {
                fontFamily: string;
                fontStyle: string;
                fontWeight: number;
                src: string;
            };
            ultraBlack: {
                fontFamily: string;
                fontStyle: string;
                fontWeight: string;
                src: string;
            };
        };
    } = ...

    Combined typography font face object for use in JSS. Contains all font definitions grouped by font-face rule.

    Type declaration

    • @font-face: {
          black: {
              fontFamily: string;
              fontStyle: string;
              fontWeight: number;
              src: string;
          };
          bold: {
              fontFamily: string;
              fontStyle: string;
              fontWeight: string;
              src: string;
          };
          boldItalic: {
              fontFamily: string;
              fontStyle: string;
              fontWeight: string;
              src: string;
          };
          extraLight: {
              fontFamily: string;
              fontStyle: string;
              fontWeight: number;
              src: string;
          };
          italic: {
              fontFamily: string;
              fontStyle: string;
              fontWeight: string;
              src: string;
          };
          light: {
              fontFamily: string;
              fontStyle: string;
              fontWeight: number;
              src: string;
          };
          regular: {
              fontFamily: string;
              fontStyle: string;
              fontWeight: string;
              src: string;
          };
          thin: {
              fontFamily: string;
              fontStyle: string;
              fontWeight: number;
              src: string;
          };
          ultraBlack: {
              fontFamily: string;
              fontStyle: string;
              fontWeight: string;
              src: string;
          };
      }

    1.3.1