Skip to content

Commit

Permalink
chore: fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
falsepopsky authored Mar 22, 2024
1 parent 44e0b77 commit 536775b
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions packages/web/.astro/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,20 +136,62 @@ declare module 'astro:content' {

type ContentEntryMap = {
"docs": {
"api/games/covers.mdx": {
id: "api/games/covers.mdx";
slug: "api/games/covers";
body: string;
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".mdx"] };
"api/games/games.mdx": {
id: "api/games/games.mdx";
slug: "api/games/games";
body: string;
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".mdx"] };
"api/games/id.mdx": {
id: "api/games/id.mdx";
slug: "api/games/id";
body: string;
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".mdx"] };
"api/games/platformid.mdx": {
id: "api/games/platformid.mdx";
slug: "api/games/platformid";
body: string;
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".mdx"] };
"api/games/platforms.mdx": {
id: "api/games/platforms.mdx";
slug: "api/games/platforms";
body: string;
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".mdx"] };
"api/games/random.mdx": {
id: "api/games/random.mdx";
slug: "api/games/random";
body: string;
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".mdx"] };
"api/games/recent.mdx": {
id: "api/games/recent.mdx";
slug: "api/games/recent";
body: string;
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".mdx"] };
"api/games/screenshots.mdx": {
id: "api/games/screenshots.mdx";
slug: "api/games/screenshots";
body: string;
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".mdx"] };
"api/genres.mdx": {
id: "api/genres.mdx";
slug: "api/genres";
Expand Down

0 comments on commit 536775b

Please sign in to comment.