parseMarkBookmarkCommand
parseMarkBookmarkCommand(
queryParts):MarkBookmarkCommand
Defined in: application/commands/bookmark-mark-command-parser.ts:114
Mark commandを解析。
Parameters
Section titled “Parameters”queryParts
Section titled “queryParts”readonly string[]
command名を除いたtoken一覧。
Returns
Section titled “Returns”Mark command。
Example
Section titled “Example”const result = parseMarkBookmarkCommand(["--to", "./Work", "Stripe"]);// { kind: "mark", targetFolderPathInput: "./Work", titleInput: "Stripe", titleSpecified: true, allowDuplicate: false }