vscode-json-to-ts icon indicating copy to clipboard operation
vscode-json-to-ts copied to clipboard

Add config for separator

Open unional opened this issue 7 years ago • 0 comments

jsonToTS.separator: "semi-colon" | "comma" | "none"

interface X {
  a: string;  // semi-colon
  b: string, // comma
  c: string  // none
}

unional avatar Feb 21 '18 23:02 unional