mirror of
https://github.com/withastro/astro.git
synced 2024-12-30 22:03:56 -05:00
[ci] format
This commit is contained in:
parent
1d4f6a4989
commit
5407f4e227
1 changed files with 4 additions and 8 deletions
|
@ -2648,10 +2648,8 @@ export interface MarkdownInstance<T extends Record<string, any>> {
|
||||||
|
|
||||||
type MD = MarkdownInstance<Record<string, any>>;
|
type MD = MarkdownInstance<Record<string, any>>;
|
||||||
|
|
||||||
export interface MDXInstance<T extends Record<string, any>> extends Omit<
|
export interface MDXInstance<T extends Record<string, any>>
|
||||||
MarkdownInstance<T>,
|
extends Omit<MarkdownInstance<T>, 'rawContent' | 'compiledContent'> {
|
||||||
'rawContent' | 'compiledContent'
|
|
||||||
> {
|
|
||||||
components: Record<string, AstroComponentFactory> | undefined;
|
components: Record<string, AstroComponentFactory> | undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2667,10 +2665,8 @@ export interface MarkdownLayoutProps<T extends Record<string, any>> {
|
||||||
compiledContent: MarkdownInstance<T>['compiledContent'];
|
compiledContent: MarkdownInstance<T>['compiledContent'];
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface MDXLayoutProps<T extends Record<string, any>> extends Omit<
|
export interface MDXLayoutProps<T extends Record<string, any>>
|
||||||
MarkdownLayoutProps<T>,
|
extends Omit<MarkdownLayoutProps<T>, 'rawContent' | 'compiledContent'> {
|
||||||
'rawContent' | 'compiledContent'
|
|
||||||
> {
|
|
||||||
components: MDXInstance<T>['components'];
|
components: MDXInstance<T>['components'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue