-
Notifications
You must be signed in to change notification settings - Fork 158
/
virtual.d.ts
55 lines (42 loc) · 3.15 KB
/
virtual.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
declare module 'virtual:starlight/user-config' {
const Config: import('@astrojs/starlight/types').StarlightConfig;
export default Config;
}
declare module 'virtual:starlight/user-images' {
type ImageMetadata = import('astro').ImageMetadata;
export const logos: {
dark?: ImageMetadata;
light?: ImageMetadata;
};
}
declare module 'qs'
declare module 'virtual:starlight/components' {
export const Badge: typeof import('@astrojs/starlight/components/Badge.astro').default;
export const Banner: typeof import('@astrojs/starlight/components/Banner.astro').default;
export const ContentPanel: typeof import('@astrojs/starlight/components/ContentPanel.astro').default;
export const PageTitle: typeof import('@astrojs/starlight/components/PageTitle.astro').default;
export const FallbackContentNotice: typeof import('@astrojs/starlight/components/FallbackContentNotice.astro').default;
export const Footer: typeof import('@astrojs/starlight/components/Footer.astro').default;
export const LastUpdated: typeof import('@astrojs/starlight/components/LastUpdated.astro').default;
export const Pagination: typeof import('@astrojs/starlight/components/common/Pagination.astro').default;
export const EditLink: typeof import('@astrojs/starlight/components/EditLink.astro').default;
export const Header: typeof import('@astrojs/starlight/components/Header.astro').default;
export const LanguageSelect: typeof import('@astrojs/starlight/components/LanguageSelect.astro').default;
export const Search: typeof import('@astrojs/starlight/components/Search.astro').default;
export const SiteTitle: typeof import('@astrojs/starlight/components/SiteTitle.astro').default;
export const SocialIcons: typeof import('@astrojs/starlight/components/SocialIcons.astro').default;
export const ThemeSelect: typeof import('@astrojs/starlight/components/ThemeSelect.astro').default;
export const Head: typeof import('@astrojs/starlight/components/Head.astro').default;
export const Hero: typeof import('@astrojs/starlight/components/Hero.astro').default;
export const MarkdownContent: typeof import('@astrojs/starlight/components/MarkdownContent.astro').default;
export const PageSidebar: typeof import('@astrojs/starlight/components/PageSidebar.astro').default;
export const TableOfContents: typeof import('@astrojs/starlight/components/TableOfContents.astro').default;
export const MobileTableOfContents: typeof import('@astrojs/starlight/components/MobileTableOfContents.astro').default;
export const Sidebar: typeof import('@astrojs/starlight/components/Sidebar.astro').default;
export const SkipLink: typeof import('@astrojs/starlight/components/SkipLink.astro').default;
export const ThemeProvider: typeof import('@astrojs/starlight/components/ThemeProvider.astro').default;
export const PageFrame: typeof import('@astrojs/starlight/components/PageFrame.astro').default;
export const MobileMenuToggle: typeof import('@astrojs/starlight/components/MobileMenuToggle.astro').default;
export const MobileMenuFooter: typeof import('@astrojs/starlight/components/MobileMenuFooter.astro').default;
export const TwoColumnContent: typeof import('@astrojs/starlight/components/TwoColumnContent.astro').default;
}