core
core copied to clipboard
Feat: Add generics for selector
Example:
dom.select<FastjsDom>("body")
dom.select<FastjsDomList>(".class")
dom.select<FastjsDom | null>("#answer")
dom.select("p") // FastjsDom | FastjsDomList | null