27.07 Artifact UI
#todo
interface ArtifactAttachments {
uiComponent: UIComponentAttachment[], // OPTIONAL
// ...
}
export interface UIComponentAttachment {
slot: string; // REQUIRED
card: UIComponentCard | null; //REQUIRED
}
interface UIComponentCard {
js?: string; // OPTIONAL
html?: string; // OPTIONAL
system?: string; // OPTIONAL
// ...
}