parseTagBookmarkCommand
This content is for v1.2.1. Switch to the latest version for up-to-date documentation.
parseTagBookmarkCommand(
queryParts):TagBookmarkCommand
Defined in: application/commands/bookmark-tag-command-parser.ts:34
Tag commandを解析。
Parameters
Section titled “Parameters”queryParts
Section titled “queryParts”readonly string[]
command名を除いたtoken一覧。
Returns
Section titled “Returns”Tag command。
Example
Section titled “Example”const result = parseTagBookmarkCommand(["--remove", "2", "#prod"]);// { kind: "tag", remove: true, targetInput: "2", tagInputs: ["#prod"] }