typehole icon indicating copy to clipboard operation
typehole copied to clipboard

TypeScript development tool for Visual Studio Code that helps you automate creating the initial static typing for runtime values

Results 8 typehole issues
Sort by recently updated
recently updated
newest added

If there is no configuration `ProjectPath` on the windows 7 platform, look at the log information output by the plug-in: > Info: Searching for runtime library in /d:/vscode-workspace/xxx Info: Cannot...

Hi, This project looks awesome! I was wondering if this can be done with a cli or any other in order to be run with Jetbrains ide

enhancement

My biggest feature request would be to allow type holes to push output to other files. For example, I have a directory with the following structure: I would love to...

enhancement

I do not know if this is possible but this would also be life-changing: scan the prototype of an object to see if it contains any functions, and then optionally...

enhancement

I think the import for typehole should also be removed if you call remove all typeholes from all files. Repro: 1. Run command "Remove all typeholes from all files" 2....

bug

![image](https://user-images.githubusercontent.com/48861400/118540820-d61ee300-b705-11eb-910a-12fa0d351db7.png) After an initial run failed the rest of session showed a typehole warning underline. The warning was persistent through opening and closing the file. The warning did go away...

bug

So instead of using a generic type variable in the typehole, the plugin could add ```typescript import App from "./App.svelte"; import typehole from "typehole"; type AutoDiscovered = any; const app...

enhancement

Not a huge issue in this example as the interfaces are identical and the second one is merged with the first. ```typescript interface Bar { number: number; title: string; duration:...