mzgoddard / preact-render-spy

Render preact components with access to the produced virtual dom for testing.

Home Page:https://www.npmjs.com/package/preact-render-spy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

index.d.ts is missing a number of type signatures

growlycode opened this issue · comments

In index.d.ts, a lot of recent changes have not been applied e.g.

find<Q, T>(selector: string): FindWrapper<Q, T>;

should be

find<Q, T>(selector: preact.VNode | string): FindWrapper<Q, T>;

I think we updated most of these, if there are others missing please re-open a PR?