-
Notifications
You must be signed in to change notification settings - Fork 166
/
env.d.ts
52 lines (48 loc) · 1.2 KB
/
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
declare module "*.css" {
const classes: { readonly [key: string]: string };
export default classes;
}
declare module "*/_content/welcome-message.md" {
// eslint-disable-next-line one-var
const attributes: {
last_updated_time: string;
title: string;
};
// eslint-disable-next-line one-var
const html: string;
export { attributes, html };
}
declare module "*/_content/home-page.md" {
// eslint-disable-next-line one-var
const attributes: {
last_updated_time: string;
home_banner_image?: string;
};
// eslint-disable-next-line one-var
const html: string;
export { attributes, html };
}
declare module "*/_content/informasi-terbaru/*.md" {
// eslint-disable-next-line one-var
const attributes: {
title: string;
date: string;
link_text: string;
link: string;
};
// eslint-disable-next-line one-var
const html: string;
export { attributes, html };
}
declare module "*/_content/about/content.md" {
// eslint-disable-next-line one-var
const attributes: {
title: string;
description: string;
last_updated_time: string;
thumbnail_image: string;
};
// eslint-disable-next-line one-var
const html: string;
export { attributes, html };
}