wcandillon / canvaskit-js

A polyfill of CanvasKit that uses browser APIs
MIT License
79 stars 8 forks source link

Export the `CanvasKit` type #23

Open JonnyBurger opened 7 months ago

JonnyBurger commented 7 months ago

Convienient to make not have type errors

declare global {
    interface Window {
        CanvasKit: CanvasKit;
    }
}
wcandillon commented 7 months ago

yes :) thank you for catching this.