13 lines
241 B
TypeScript
13 lines
241 B
TypeScript
// src/types/window.d.ts
|
|
interface FontData {
|
|
family: string
|
|
fullName: string
|
|
postscriptName: string
|
|
style: string
|
|
blob: () => Promise<Blob>
|
|
}
|
|
|
|
interface Window {
|
|
queryLocalFonts?: (options?) => Promise<FontData[]>
|
|
}
|