vscode-json-to-ts
vscode-json-to-ts copied to clipboard
Add config for separator
jsonToTS.separator: "semi-colon" | "comma" | "none"
interface X {
a: string; // semi-colon
b: string, // comma
c: string // none
}