UNPKG

@smash-sdk/domain

Version:
25 lines (24 loc) 591 B
export interface UpdateDomainCustomizationInput { domainId: string; logo?: string; background?: string; } export interface UpdateDomainCustomizationOutput { customization: { domain: string; logo: { id: string; type: "Image"; sourceId: string; sourceUrl: string; thumbnail: string; }; background: { id: string; type: "Image" | "Youtube" | "Vimeo"; sourceId: string; sourceUrl: string; thumbnail: string; }; }; }