forked from dfinity/portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.env.d.ts
35 lines (30 loc) · 1.22 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
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;
}