// Local Font Access API // Specification: https://wicg.github.io/local-font-access/ // Repository: https://github.com/WICG/local-font-access declare function queryLocalFonts(options?: QueryOptions): Promise; interface QueryOptions { postscriptNames: string[]; } declare class FontData { blob(): Promise; readonly postscriptName: string; readonly fullName: string; readonly family: string; readonly style: string; }