mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-15 12:00:43 +00:00
8 lines
176 B
TypeScript
8 lines
176 B
TypeScript
declare module "@napi-rs/canvas" {
|
|
export type Canvas = {
|
|
toBuffer(type?: string): Buffer;
|
|
};
|
|
|
|
export function createCanvas(width: number, height: number): Canvas;
|
|
}
|