diff options
author | 2023-01-18 22:06:58 +0000 | |
---|---|---|
committer | 2023-01-18 22:06:58 +0000 | |
commit | e64351eb5cbb82ce1eb7fc810324e8ab4967421d (patch) | |
tree | 2481ab3bf7d9e99fe9e0ae3aba0bc1886c9d457e | |
parent | 05caf445d4d2728f1010aeb2179a9e756c2fd17d (diff) | |
download | astro-e64351eb5cbb82ce1eb7fc810324e8ab4967421d.tar.gz astro-e64351eb5cbb82ce1eb7fc810324e8ab4967421d.tar.zst astro-e64351eb5cbb82ce1eb7fc810324e8ab4967421d.zip |
[ci] format
-rw-r--r-- | packages/astro/src/@types/astro.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index b02da1c3a..247b08306 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -1033,7 +1033,10 @@ export interface MarkdownInstance<T extends Record<string, any>> { type MD = MarkdownInstance<Record<string, any>>; -export type MDXInstance<T extends Record<string, any>> = Omit<MarkdownInstance<T>, 'rawContent' | 'compiledContent'>; +export type MDXInstance<T extends Record<string, any>> = Omit< + MarkdownInstance<T>, + 'rawContent' | 'compiledContent' +>; export interface MarkdownLayoutProps<T extends Record<string, any>> { frontmatter: { |