diff --git a/.astro/icon.d.ts b/.astro/icon.d.ts index 898698e..98d0db2 100644 --- a/.astro/icon.d.ts +++ b/.astro/icon.d.ts @@ -1,5 +1,5 @@ // Automatically generated by astro-icon -// 48d58aa18c5f482b943e0f1d0ff058b64ec1be14a4656942f69a2d128b6234bb +// b5656b180e17d605a43b549d7b16b9fe1f88ab935972b5d2c4a0adc596506799 declare module 'virtual:astro-icon' { export type Icon = @@ -219,6 +219,9 @@ declare module 'virtual:astro-icon' { | "line-md:external-link" | "line-md:external-link-rounded" | "line-md:facebook" + | "line-md:filter" + | "line-md:filter-filled" + | "line-md:filter-twotone" | "line-md:fork-left" | "line-md:gauge" | "line-md:gauge-empty" @@ -437,6 +440,7 @@ declare module 'virtual:astro-icon' { | "line-md:round-360" | "line-md:round-ramp-left" | "line-md:roundabout-left" + | "line-md:rss" | "line-md:search" | "line-md:search-filled" | "line-md:search-twotone" diff --git a/.astro/types.d.ts b/.astro/types.d.ts index 3cc24c6..68cb7ea 100644 --- a/.astro/types.d.ts +++ b/.astro/types.d.ts @@ -192,6 +192,13 @@ declare module 'astro:content' { collection: "blog"; data: InferEntrySchema<"blog"> } & { 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": { id: "modern-web-frameworks-introduction.mdx"; slug: "modern-web-frameworks-introduction"; @@ -223,5 +230,5 @@ declare module 'astro:content' { type AnyEntryMap = ContentEntryMap & DataEntryMap; - export type ContentConfig = typeof import("./../src/content/config.js"); + export type ContentConfig = typeof import("../src/content/config.js"); }