Skip to content

Commit

Permalink
Update package-lock.json and import statements***
Browse files Browse the repository at this point in the history
  • Loading branch information
marklundin committed Jul 24, 2024
1 parent a27abe2 commit 7a4fa5f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/parsers/attribute-parser.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ts from 'typescript';
import * as ts from 'typescript';
import { TSDocConfiguration, TSDocTagDefinition, TSDocTagSyntaxKind, TextRange, TSDocParser } from "@microsoft/tsdoc";
import { extractTextFromDocNode, getLeadingBlockCommentRanges, getType } from '../utils/ts-utils.js';

Expand Down
2 changes: 1 addition & 1 deletion src/parsers/script-parser.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ts from 'typescript';
import * as ts from 'typescript';
import { TextRange } from '@microsoft/tsdoc';

import { AttributeParser } from './attribute-parser.js';
Expand Down
2 changes: 1 addition & 1 deletion src/utils/ts-utils.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { DocNodeKind } from '@microsoft/tsdoc';
import { knownLibFilesForCompilerOptions } from '@typescript/vfs';
import ts from 'typescript';
import * as ts from 'typescript';
import { ParsingError } from '../parsers/parsing-error.js';

export function createDefaultMapFromCDN(options, prefix, ts) {
Expand Down

0 comments on commit 7a4fa5f

Please sign in to comment.