Skip to content

Commit 3290814

Browse files
Update test.
1 parent 17b790b commit 3290814

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

tests/baselines/reference/APISample_linter.types.pull

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2453,9 +2453,8 @@ declare module "typescript" {
24532453
>expression : Expression
24542454
>Expression : Expression
24552455
}
2456-
interface ImportDeclaration extends Statement, ModuleElement {
2456+
interface ImportDeclaration extends ModuleElement {
24572457
>ImportDeclaration : ImportDeclaration
2458-
>Statement : Statement
24592458
>ModuleElement : ModuleElement
24602459

24612460
importClause?: ImportClause;
@@ -2964,10 +2963,10 @@ declare module "typescript" {
29642963
>Symbol : Symbol
29652964
>Symbol : Symbol
29662965

2967-
getExportsOfExternalModule(node: ImportDeclaration): Symbol[];
2968-
>getExportsOfExternalModule : (node: ImportDeclaration) => Symbol[]
2969-
>node : ImportDeclaration
2970-
>ImportDeclaration : ImportDeclaration
2966+
getExportsOfModule(moduleSymbol: Symbol): Symbol[];
2967+
>getExportsOfModule : (moduleSymbol: Symbol) => Symbol[]
2968+
>moduleSymbol : Symbol
2969+
>Symbol : Symbol
29712970
>Symbol : Symbol
29722971
}
29732972
interface SymbolDisplayBuilder {

0 commit comments

Comments
 (0)