hosanna-ui-docs - v0.9.0
    Preparing search index...

    Interface representing a font service for managing font registration and retrieval.

    interface IFontService {
        registerDefaultFont(fontName: string, fontUrl: string): Promise<void>;
    }
    Index

    Methods

    • Registers a default font with the specified name and URL. This allows the application to use the font globally.

      Parameters

      • fontName: string

        The name of the font to register.

      • fontUrl: string

        The URL of the font file.

      Returns Promise<void>