15 lines
351 B
TypeScript
15 lines
351 B
TypeScript
import { ImageVaultAssetResponse } from "../components/imageVault"
|
|
import { EmbedEnum } from "./utils/embeds"
|
|
import { Typename } from "./utils/typename"
|
|
|
|
export type ImageContainer = Typename<
|
|
{
|
|
image_left: ImageVaultAssetResponse
|
|
image_right: ImageVaultAssetResponse
|
|
system: {
|
|
uid: string
|
|
}
|
|
},
|
|
EmbedEnum.ImageContainer
|
|
>
|