import { EmbedEnum } from "./utils/embeds" import { PageLink, PageLinkWithOriginalUrl } from "./utils/pageLink" import { TypenameInterface } from "./utils/typename" import type { ImageContainer } from "./imageContainer" import type { SysAsset } from "./utils/asset" interface AccountPage extends TypenameInterface, PageLink {} interface ContentPage extends TypenameInterface, PageLinkWithOriginalUrl {} interface LoyaltyPage extends TypenameInterface, PageLinkWithOriginalUrl {} export type Embeds = | AccountPage | ContentPage | ImageContainer | LoyaltyPage | SysAsset