fix: formatting comment (#7206)

This commit is contained in:
Emanuele Stoppa 2023-05-25 10:29:11 +01:00 committed by GitHub
parent 6ca3b5a9e8
commit 8727b5bd85
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,9 @@
// leave space, so organize imports doesn't mess up comments
// @ts-expect-error Cannot find module 'astro/runtime/server/index.js' or its corresponding type declarations.
import { unescapeHTML } from 'astro/runtime/server/index.js';
import Markdoc from '@markdoc/markdoc';
import type { ShikiConfig } from 'astro';
import { unescapeHTML } from 'astro/runtime/server/index.js';
import type * as shikiTypes from 'shiki';
import type { AstroMarkdocConfig } from '../config.js';
import { MarkdocError } from '../utils.js';