@theguild/components
Version: 
62 lines (59 loc) • 1.3 kB
text/typescript
import * as react from 'react';
import { ProductType } from '../products.mjs';
declare function sharedMetaItems(options: {
    githubUrl: string;
    product: ProductType;
}): {
    products: {
        title: string;
        type: string;
        items: {
            [k: string]: {
                type: "separator";
                title: react.ReactElement;
            } | {
                href: string;
                title: react.ReactElement;
            };
        };
    };
    ecosystem: {
        href?: string | undefined;
        title: string;
        type: string;
    };
    blog: {
        title: string;
        type: string;
        href: string;
    };
    github: {
        title: string;
        type: string;
        href: string;
    };
    'the-guild': {
        title: string;
        type: string;
        items: {
            'about-us': {
                title: string;
                href: string;
            };
            'brand-assets': {
                title: string;
                href: string;
            };
            blog: {
                title: string;
                href: string;
            };
        };
    };
    'graphql-foundation': {
        title: string;
        type: string;
        href: string;
    };
};
export { sharedMetaItems };