13 lines
395 B
TypeScript
13 lines
395 B
TypeScript
import { EmbedEnum } from "./utils/embeds"
|
|
|
|
import type { ImageVaultAssetResponse } from "../components/imageVault"
|
|
import type { System } from "./system"
|
|
import type { TypenameInterface } from "./utils/typename"
|
|
|
|
export interface ImageContainer
|
|
extends TypenameInterface<EmbedEnum.ImageContainer>,
|
|
System {
|
|
image_left?: ImageVaultAssetResponse
|
|
image_right?: ImageVaultAssetResponse
|
|
}
|