-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtypes.d.ts
61 lines (60 loc) · 3.11 KB
/
types.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
58
59
60
61
namespace Fred {
type Context<T = Rari.BuiltPage> = T & {
l10n?: import("./fluent.js").Fluent;
};
}
namespace Rari {
type BuiltPage = import("@mdn/rari").BuiltPage;
type BaselineHighLow = import("@mdn/rari").BaselineHighLow;
type Section = import("@mdn/rari").Section;
type DIssue = import("@mdn/rari").DIssue;
type IssueType = import("@mdn/rari").IssueType;
type Locale = import("@mdn/rari").Locale;
type Native = import("@mdn/rari").Native;
type PageType = import("@mdn/rari").PageType;
type Topic = import("@mdn/rari").Topic;
type Template = import("@mdn/rari").Template;
type DocPage = import("@mdn/rari").DocPage;
type Doc = import("@mdn/rari").Doc;
type Baseline = import("@mdn/rari").Baseline;
type SupportStatus = import("@mdn/rari").SupportStatus;
type Support = import("@mdn/rari").Support;
type Prose = import("@mdn/rari").Prose;
type Compat = import("@mdn/rari").Compat;
type SpecificationSection = import("@mdn/rari").SpecificationSection;
type Specification = import("@mdn/rari").Specification;
type Translation = import("@mdn/rari").Translation;
type Parent = import("@mdn/rari").Parent;
type Source = import("@mdn/rari").Source;
type TocEntry = import("@mdn/rari").TocEntry;
type CurriculumPage = import("@mdn/rari").CurriculumPage;
type CurriculumDoc = import("@mdn/rari").CurriculumDoc;
type CurriculumIndexEntry = import("@mdn/rari").CurriculumIndexEntry;
type PrevNextByUrl = import("@mdn/rari").PrevNextByUrl;
type UrlNTitle = import("@mdn/rari").UrlNTitle;
type CurriculumSidebarEntry = import("@mdn/rari").CurriculumSidebarEntry;
type BlogPostPage = import("@mdn/rari").BlogPostPage;
type BlogMeta = import("@mdn/rari").BlogMeta;
type AuthorLink = import("@mdn/rari").AuthorLink;
type BlogImage = import("@mdn/rari").BlogImage;
type AuthorMetadata = import("@mdn/rari").AuthorMetadata;
type PrevNextBySlug = import("@mdn/rari").PrevNextBySlug;
type SlugNTitle = import("@mdn/rari").SlugNTitle;
type BlogPostDoc = import("@mdn/rari").BlogPostDoc;
type BlogIndex = import("@mdn/rari").BlogIndex;
type ContributorSpotlightPage = import("@mdn/rari").ContributorSpotlightPage;
type ContributorSpotlightHyData = import("@mdn/rari").ContributorSpotlightHyData;
type Usernames = import("@mdn/rari").Usernames;
type GenericPage = import("@mdn/rari").GenericPage;
type GenericHyData = import("@mdn/rari").GenericHyData;
type SPAPage = import("@mdn/rari").SPAPage;
type HomePage = import("@mdn/rari").HomePage;
type HomePageSPAHyData = import("@mdn/rari").HomePageSPAHyData;
type HomePageFeaturedArticle = import("@mdn/rari").HomePageFeaturedArticle;
type HomePageFeaturedContributor = import("@mdn/rari").HomePageFeaturedContributor;
type ItemContainerFor_HomePageLatestNewsItem = import("@mdn/rari").ItemContainerFor_HomePageLatestNewsItem;
type HomePageLatestNewsItem = import("@mdn/rari").HomePageLatestNewsItem;
type NameUrl = import("@mdn/rari").NameUrl;
type ItemContainerFor_HomePageRecentContribution = import("@mdn/rari").ItemContainerFor_HomePageRecentContribution;
type HomePageRecentContribution = import("@mdn/rari").HomePageRecentContribution;
}