opengsstec / src /types /napi-rs-canvas.d.ts
OpenClaw Deploy
Deploy OpenClaw to Hugging Face
c1243f9
declare module "@napi-rs/canvas" {
export type Canvas = {
toBuffer(type?: string): Buffer;
};
export function createCanvas(width: number, height: number): Canvas;
}