Skip to content

Commit

Permalink
update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
alicewriteswrongs committed Apr 19, 2023
1 parent 9d6013d commit 367d759
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions src/compiler/transformers/type-library.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@ const TYPE_LIBRARY: d.JsonDocsTypeLibrary = {};
* @returns the unique ID for the type in question
*/
export function addToLibrary(type: ts.Type, typeName: string, checker: ts.TypeChecker): string {
console.log('adding ', typeName);
const pathToTypeModule = getPathToTypeModule(type);
console.log('path::', pathToTypeModule);

// for now we don't make any attempt to include types in node_modules
if (pathToTypeModule.startsWith('node_modules')) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { importedInterface, ImportedInterface } from './imported-interface';
})
export class MyComponent {
/**
* Returns a promise that resolves when the toast did dismiss.
* A comment, which should be included, I should think!
*/
@Method()
onDidDismiss<T>(arg: T): Promise<ImportedInterface<T>> {
Expand Down

0 comments on commit 367d759

Please sign in to comment.