0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-30 22:03:56 -05:00

[ci] format

This commit is contained in:
Benjamin MENANT 2024-10-25 10:18:10 +00:00 committed by astrobot-houston
parent 1d4f6a4989
commit 5407f4e227

View file

@ -2648,10 +2648,8 @@ export interface MarkdownInstance<T extends Record<string, any>> {
type MD = MarkdownInstance<Record<string, any>>;
export interface MDXInstance<T extends Record<string, any>> extends Omit<
MarkdownInstance<T>,
'rawContent' | 'compiledContent'
> {
export interface MDXInstance<T extends Record<string, any>>
extends Omit<MarkdownInstance<T>, 'rawContent' | 'compiledContent'> {
components: Record<string, AstroComponentFactory> | undefined;
}
@ -2667,10 +2665,8 @@ export interface MarkdownLayoutProps<T extends Record<string, any>> {
compiledContent: MarkdownInstance<T>['compiledContent'];
}
export interface MDXLayoutProps<T extends Record<string, any>> extends Omit<
MarkdownLayoutProps<T>,
'rawContent' | 'compiledContent'
> {
export interface MDXLayoutProps<T extends Record<string, any>>
extends Omit<MarkdownLayoutProps<T>, 'rawContent' | 'compiledContent'> {
components: MDXInstance<T>['components'];
}