/** * @type SourceCodeRedirectInfo: Document representing source code redirect info. * * @property locationType: The type of redirect location, such as product (for a product page), category (a category page), home (for home page), page (for content), or URL (for a URL location). * * @property location: The location of redirect, based on the type, this can be a product location, category location, home page, content page, or just a URL. * */ export type SourceCodeRedirectInfo = { locationType: SourceCodeRedirectInfoLocationTypeEnum; location?: string; } & { [key: string]: any; }; export type SourceCodeRedirectInfoLocationTypeEnum = 'default' | 'home' | 'product' | 'category' | 'page' | 'url';