fastjs-team / core

Fastjs is a useful, lightweight JavaScript library for any types of project.
https://fastjs.dev
MIT License
341 stars 37 forks source link

Feat: Add generics for selector #122

Closed xiaodong2008 closed 2 months ago

xiaodong2008 commented 2 months ago

Example:

dom.select<FastjsDom>("body")
dom.select<FastjsDomList>(".class")
dom.select<FastjsDom | null>("#answer")
dom.select("p") // FastjsDom | FastjsDomList | null