@mintlify/previewing 4.0.350 → 4.0.352

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -26,41 +26,38 @@ export declare const generateNav: (pagesAcc: Record<string, DecoratedNavigationP
26
26
  pages: any[];
27
27
  }) & {
28
28
  global?: {
29
- languages?: ({
29
+ languages?: {
30
+ href: string;
30
31
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
31
32
  default?: boolean | undefined;
32
33
  hidden?: boolean | undefined;
33
- } & {
34
- href: string;
35
- })[] | undefined;
36
- versions?: ({
34
+ }[] | undefined;
35
+ versions?: {
37
36
  version: string;
37
+ href: string;
38
38
  default?: boolean | undefined;
39
39
  hidden?: boolean | undefined;
40
- } & {
40
+ }[] | undefined;
41
+ tabs?: {
41
42
  href: string;
42
- })[] | undefined;
43
- tabs?: ({
44
43
  tab: string;
45
44
  icon?: string | {
46
45
  name: string;
47
46
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
48
47
  } | undefined;
49
48
  hidden?: boolean | undefined;
50
- } & {
49
+ }[] | undefined;
50
+ dropdowns?: {
51
51
  href: string;
52
- })[] | undefined;
53
- dropdowns?: ({
54
52
  dropdown: string;
55
53
  icon?: string | {
56
54
  name: string;
57
55
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
58
56
  } | undefined;
59
57
  hidden?: boolean | undefined;
60
- } & {
58
+ }[] | undefined;
59
+ anchors?: {
61
60
  href: string;
62
- })[] | undefined;
63
- anchors?: ({
64
61
  anchor: string;
65
62
  icon?: string | {
66
63
  name: string;
@@ -71,9 +68,7 @@ export declare const generateNav: (pagesAcc: Record<string, DecoratedNavigationP
71
68
  dark?: string | undefined;
72
69
  } | undefined;
73
70
  hidden?: boolean | undefined;
74
- } & {
75
- href: string;
76
- })[] | undefined;
71
+ }[] | undefined;
77
72
  } | undefined;
78
73
  };
79
74
  }>;