forked from dfinity/portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.env.d.ts
57 lines (50 loc) · 1.74 KB
/
app.env.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import {
Navbar,
NavbarItem,
} from "@docusaurus/theme-common/src/utils/useThemeConfig";
import { LinkLikeNavbarItemProps } from "@theme/NavbarItem";
declare module "*.png";
declare module "*.webp";
declare module "*.svg";
declare module "*.jpeg";
declare module "*.jpg";
declare module "@site/.docusaurus/conversations/default/conversations.json" {
import { LiveSession } from "@site/src/components/LiveSessionsPage/LiveSession";
const conversations: LiveSession[];
export default conversations;
}
declare module "@site/.docusaurus/howitworks-cards/default/howitworks-cards.json" {
import { HowItWorksPageData } from "@site/src/components/HowItWorksPage/HowItWorksData";
const data: HowItWorksPageData;
export default data;
}
declare module "@site/.docusaurus/roadmap-data/default/roadmap-data.json" {
import { RoadmapDomain } from "@site/src/components/RoadmapPage/RoadmapTypes";
const data: RoadmapDomain[];
export default data;
}
declare module "@site/.docusaurus/what-is-the-ic-data/default/what-is-the-ic.json" {
import { WhatIsIcpTopic } from "./src/components/HowItWorksPage/WhatIsIcpData";
const data: WhatIsIcpTopic[];
export default data;
}
declare module "@site/.docusaurus/home-showcase/default/home-showcase.json" {
import { ShowcaseProject } from "./src/components/ShowcasePage/ShowcaseProject";
const data: ShowcaseProject[];
export default data;
}
declare module "@docusaurus/theme-common" {
interface ThemeConfig {
subnav: Omit<Navbar, "items" | "type"> & {
items: Array<
NavbarItem & {
sidebarId?: string;
docId?: string;
readonly type?: "docSidebar" | "doc" | "dropdown";
items?: LinkLikeNavbarItemProps[];
href?: string;
}
>;
};
}
}