Skip to content

Commit 366ff93

Browse files
committedSep 26, 2023
Auto-fix issues.
1 parent 0e54561 commit 366ff93

File tree

597 files changed

+1832
-1358
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

597 files changed

+1832
-1358
lines changed
 

‎apps/api-documenter/src/cli/BaseAction.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@
22
// See LICENSE in the project root for license information.
33

44
import * as path from 'path';
5-
import * as tsdoc from '@microsoft/tsdoc';
5+
import type * as tsdoc from '@microsoft/tsdoc';
66
import colors from 'colors/safe';
77

88
import {
99
CommandLineAction,
10-
CommandLineStringParameter,
10+
type CommandLineStringParameter,
1111
type ICommandLineActionOptions
1212
} from '@rushstack/ts-command-line';
1313
import { FileSystem } from '@rushstack/node-core-library';
1414
import {
1515
ApiModel,
16-
ApiItem,
16+
type ApiItem,
1717
ApiItemContainerMixin,
1818
ApiDocumentedItem,
19-
IResolveDeclarationReferenceResult
19+
type IResolveDeclarationReferenceResult
2020
} from '@microsoft/api-extractor-model';
2121

2222
export interface IBuildApiModelResult {

‎apps/api-documenter/src/cli/GenerateAction.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import * as path from 'path';
55

6-
import { ApiDocumenterCommandLine } from './ApiDocumenterCommandLine';
6+
import type { ApiDocumenterCommandLine } from './ApiDocumenterCommandLine';
77
import { BaseAction } from './BaseAction';
88
import { DocumenterConfig } from '../documenters/DocumenterConfig';
99
import { ExperimentalYamlDocumenter } from '../documenters/ExperimentalYamlDocumenter';

0 commit comments

Comments
 (0)
Please sign in to comment.