Microsoft/TypeScript
在 GitHub 查看[type bug] fontfaces property is missing from loadingdone event object
Open
#51,885 创建于 2022年12月14日
BugDomain: lib.d.tsHelp Wanted
仓库指标
- Star
- (48,455 star)
- PR 合并指标
- (平均合并 6天 17小时) (30 天内合并 9 个 PR)
描述
Configuration Check
My compilation target is ES2015 and my lib is ES2022 & `DOM.
Missing / Incorrect Definition
Request to replace the event type of onloadingdone handler from Event to FontFaceSetLoadEvent, which has been defined in the same module.
Sample Code
interface FontFaceSet extends EventTarget {
- onloadingdone: ((this: FontFaceSet, ev: Event) => any) | null;
+ onloadingdone: ((this: FontFaceSet, ev: FontFaceSetLoadEvent) => any) | null;
}
Documentation Link
https://w3c.github.io/csswg-drafts/css-font-loading/#FontFaceSet-events