feat(SW-66, SW-348): search functionality and ui
This commit is contained in:
@@ -1,14 +1,12 @@
|
||||
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
|
||||
>
|
||||
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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user