This commit is contained in:
1288
2026-06-08 21:26:47 +08:00
commit e6189144d7
6059 changed files with 1254006 additions and 0 deletions

17
bourse_app/node_modules/fancy-canvas/size.d.ts generated vendored Normal file
View File

@@ -0,0 +1,17 @@
export declare type Size = Readonly<{
width: number;
height: number;
}> & {
__brand: 'Size';
};
export declare function size({ width, height }: {
width: number;
height: number;
}): Size;
export declare function equalSizes(first: {
width: number;
height: number;
}, second: {
width: number;
height: number;
}): boolean;