I can use the quicktype web interface to convert a TypeScript interface definition to more verbose JSONSchema:

But I'm unable to do the same from the command line. I just get an empty schema.json output:
$ cat name.ts
interface Name {
first: string;
last: string;
} $ quicktype --src-lang typescript --src name.ts --lang schema --out schema.json
$ cat schema.json
{
"$schema": "http://json-schema.org/draft-06/schema#",
"definitions": {}
}
$ quicktype --version
quicktype version 15.0.62
Visit quicktype.io for more info.
Am I missing something?
I can use the quicktype web interface to convert a TypeScript interface definition to more verbose JSONSchema:

But I'm unable to do the same from the command line. I just get an empty
schema.jsonoutput:Am I missing something?