Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

skava / @skava/fixtures   js

Repository URL to install this package:

Version: 1.2.14 

/ dist / TabbedFeaturedProductList.d.ts

/**
 * @todo fixture endpoint
 * @file use to setup some dummy data for widget testing
 * @todo need to this configure this more dynamically
 */
declare const _default: {
    tabs: {
        meta: {
            title: any;
            url: any;
            viewAll: any;
        };
        values: {
            children: any[];
            link: string;
            type: string;
            image: string;
            properties: {
                state: {
                    sorting: {
                        options: {
                            label: string;
                            value: string;
                        }[];
                    }[];
                    productcount: string;
                };
            };
            facets: {
                values: {
                    identifier: string;
                    navtype: string;
                    name: string;
                    count: string;
                }[];
                name: string;
            }[];
        };
    }[];
};
export default _default;