16 lines
279 B
TypeScript
16 lines
279 B
TypeScript
// Interface automatically generated by schemas-to-ts
|
|
|
|
export interface MediaFormat {
|
|
name: string;
|
|
hash: string;
|
|
ext: string;
|
|
mime: string;
|
|
width: number;
|
|
height: number;
|
|
size: number;
|
|
path: string;
|
|
url: string;
|
|
}
|
|
|
|
|