feat(core): add intrinsic asset dimensions

This commit is contained in:
syntaxbullet
2026-07-03 16:14:00 +02:00
parent a3b4a4a1b0
commit 97c3d3b7ae
3 changed files with 75 additions and 8 deletions

View File

@@ -1,3 +1,4 @@
import type { Size } from "./geometry";
import type { AssetId } from "./id";
export type Asset = {
@@ -5,4 +6,5 @@ export type Asset = {
name: string;
mimeType: string;
source: string;
intrinsicSize: Size;
};