We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3784231 commit 21c6147Copy full SHA for 21c6147
src/commands/docs/utils.ts
@@ -16,12 +16,7 @@ export const createBaseConfig = (options: {
16
icon: string;
17
commandDescription: string;
18
directUrl?: string;
19
-}) => ({
20
- color: options.color,
21
- icon: options.icon,
22
- commandDescription: options.commandDescription,
23
- directUrl: options.directUrl,
24
-});
+}): Pick<ProviderConfig, 'color' | 'icon' | 'commandDescription' | 'directUrl'> => options;
25
26
export const executeDocCommand = async (
27
config: ProviderConfig,
0 commit comments