parseShowDirectoryTreeCommand
parseShowDirectoryTreeCommand(
queryParts):ShowDirectoryTreeCommand
Defined in: application/commands/bookmark-tree-command-parser.ts:153
Tree commandを作ります。
Parameters
Section titled “Parameters”queryParts
Section titled “queryParts”readonly string[]
command名を除いたtoken一覧です。
Returns
Section titled “Returns”Tree commandです。
Example
Section titled “Example”const result = parseShowDirectoryTreeCommand(["--depth", "2", "./Work"]);// { kind: "tree", depth: 2, pathInput: "./Work" }