A VSCode extension for insert TSDoc style comments into selections.
Convert:
interface test {
b: {
a: number;
};
c: [string, { d: [boolean] }];
}
Into:
/** */
interface test {
/** */
b: {
/** */
a: number;
};
/** */
c: [
/** */
string,
/** */
{
d: [
/** */
boolean
];
}
];
}
- select a block of code (eg. typescript declarations).
- Press
Shift
+Command
+P
(Mac) /Ctrl
+Shift
+P
(Windows/Linux). open command palette. - Select
TSDoc Insert: insert empty TSDoc style comments into selected text
https://github.com/Topppy/tsdoc-insert
MIT.
- First release