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>>;
|
||||
|
||||
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'];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue