Skip to content

Commit ca9d634

Browse files
committed
Removed unneeded override function
1 parent e5bacae commit ca9d634

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

api-extractor/src/definitions/ApiStructuredType.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,6 @@ export default class ApiStructuredType extends ApiItemContainer {
103103
});
104104
}
105105

106-
/**
107-
* {@inheritdoc ApiITem.shouldHaveDocumentation}
108-
*/
109-
public shouldHaveDocumentation(): boolean {
110-
return false;
111-
}
112-
113106
/**
114107
* Returns a line of text such as "class MyClass extends MyBaseClass", excluding the
115108
* curly braces and body. The name "MyClass" will be the public name seend by external

api-extractor/testInputs/example1/example1-output.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ class InternalClass {
1414
public test(): void;
1515
}
1616

17+
// (undocumented)
1718
class MyClass {
1819
// (undocumented)
1920
public field: number;

common/reviews/api/api-extractor.api.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
class ApiFileGenerator extends ApiItemVisitor {
22
// (undocumented)
33
protected _indentedWriter: IndentedWriter;
4-
protected _insideTypeLiteral: number;
54
public static areEquivalentApiFileContents(actualFileContent: string, expectedFileContent: string): boolean;
65
// (undocumented)
76
public generateApiFileContent(extractor: Extractor): string;

0 commit comments

Comments
 (0)