11 lines
195 B
TypeScript
11 lines
195 B
TypeScript
import type { Size } from "./geometry";
|
|
import type { AssetId } from "./id";
|
|
|
|
export type Asset = {
|
|
id: AssetId;
|
|
name: string;
|
|
mimeType: string;
|
|
source: string;
|
|
intrinsicSize: Size;
|
|
};
|