Skip to content

Commit

Permalink
fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
dsinghvi committed Sep 29, 2024
1 parent 609481c commit bb0dcf0
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions packages/cli/docs-importers/mintlify/src/mintlify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,7 @@ export interface MintJsonSchema {
}
)[]
];
metadata?: {
[k: string]: string;
};
metadata?: Record<string, string>;
/**
* The colors to use in your documentation. At the very least, you must define the primary color. For example: { "colors": { "primary": "#ff0000" } }
*/
Expand Down Expand Up @@ -170,9 +168,7 @@ export interface MintJsonSchema {
type: string;
url: string;
}[]
| {
[k: string]: string;
};
| Record<string, string>;
backgroundImage?: string;
feedback?: {
thumbsRating?: boolean;
Expand Down Expand Up @@ -225,9 +221,7 @@ export interface MintJsonSchema {
integrations?: {
intercom?: string;
frontchat?: string;
osano?: {
[k: string]: unknown;
} & string;
osano?: Record<string, unknown> & string;
};
isWhiteLabeled?: boolean;
search?: {
Expand Down

0 comments on commit bb0dcf0

Please sign in to comment.