chore: update astro files

This commit is contained in:
Jewgeni Lewash 2024-04-07 09:10:49 +02:00
parent 16276c6eb4
commit 7ca8cb6082
2 changed files with 13 additions and 2 deletions

6
.astro/icon.d.ts vendored
View File

@ -1,5 +1,5 @@
// Automatically generated by astro-icon // Automatically generated by astro-icon
// 48d58aa18c5f482b943e0f1d0ff058b64ec1be14a4656942f69a2d128b6234bb // b5656b180e17d605a43b549d7b16b9fe1f88ab935972b5d2c4a0adc596506799
declare module 'virtual:astro-icon' { declare module 'virtual:astro-icon' {
export type Icon = export type Icon =
@ -219,6 +219,9 @@ declare module 'virtual:astro-icon' {
| "line-md:external-link" | "line-md:external-link"
| "line-md:external-link-rounded" | "line-md:external-link-rounded"
| "line-md:facebook" | "line-md:facebook"
| "line-md:filter"
| "line-md:filter-filled"
| "line-md:filter-twotone"
| "line-md:fork-left" | "line-md:fork-left"
| "line-md:gauge" | "line-md:gauge"
| "line-md:gauge-empty" | "line-md:gauge-empty"
@ -437,6 +440,7 @@ declare module 'virtual:astro-icon' {
| "line-md:round-360" | "line-md:round-360"
| "line-md:round-ramp-left" | "line-md:round-ramp-left"
| "line-md:roundabout-left" | "line-md:roundabout-left"
| "line-md:rss"
| "line-md:search" | "line-md:search"
| "line-md:search-filled" | "line-md:search-filled"
| "line-md:search-twotone" | "line-md:search-twotone"

9
.astro/types.d.ts vendored
View File

@ -192,6 +192,13 @@ declare module 'astro:content' {
collection: "blog"; collection: "blog";
data: InferEntrySchema<"blog"> data: InferEntrySchema<"blog">
} & { render(): Render[".mdx"] }; } & { render(): Render[".mdx"] };
"mastering-markdown.mdx": {
id: "mastering-markdown.mdx";
slug: "mastering-markdown";
body: string;
collection: "blog";
data: InferEntrySchema<"blog">
} & { render(): Render[".mdx"] };
"modern-web-frameworks-introduction.mdx": { "modern-web-frameworks-introduction.mdx": {
id: "modern-web-frameworks-introduction.mdx"; id: "modern-web-frameworks-introduction.mdx";
slug: "modern-web-frameworks-introduction"; slug: "modern-web-frameworks-introduction";
@ -223,5 +230,5 @@ declare module 'astro:content' {
type AnyEntryMap = ContentEntryMap & DataEntryMap; type AnyEntryMap = ContentEntryMap & DataEntryMap;
export type ContentConfig = typeof import("./../src/content/config.js"); export type ContentConfig = typeof import("../src/content/config.js");
} }