-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathstarlight.d.ts
More file actions
35 lines (28 loc) · 1.25 KB
/
starlight.d.ts
File metadata and controls
35 lines (28 loc) · 1.25 KB
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 "virtual:starlight/user-config" {
const Config: import("@astrojs/starlight/types").StarlightConfig;
export default Config;
}
declare module "virtual:starlight/components/ThemeSelect" {
const ThemeSelect: typeof import("@astrojs/starlight/components/ThemeSelect.astro").default;
export default ThemeSelect;
}
declare module "virtual:starlight/components/Search" {
const Search: typeof import("@astrojs/starlight/components/Search.astro").default;
export default Search;
}
declare module "virtual:starlight/components/SiteTitle" {
const SiteTitle: typeof import("@astrojs/starlight/components/SiteTitle.astro").default;
export default SiteTitle;
}
declare module "virtual:starlight/components/SocialIcons" {
const SocialIcons: typeof import("@astrojs/starlight/components/SocialIcons.astro").default;
export default SocialIcons;
}
declare module "virtual:starlight/components/LanguageSelect" {
const LanguageSelect: typeof import("@astrojs/starlight/components/LanguageSelect.astro").default;
export default LanguageSelect;
}
declare module "virtual:starlight/components/MobileMenuToggle" {
const MobileMenuToggle: typeof import("@astrojs/starlight/components/MobileMenuToggle.astro").default;
export default MobileMenuToggle;
}