Add support for CSV and TSV input formats in table command
All checks were successful
build / build (push) Successful in 12s

This commit is contained in:
2026-03-06 11:43:47 +01:00
parent 21b6a51330
commit 8cbd1d6399
7 changed files with 133 additions and 9 deletions

View File

@@ -24,6 +24,7 @@ import {
type CliValues = {
help?: boolean;
type?: string;
from?: string;
method?: string;
url?: string;
"display-name"?: string;
@@ -109,6 +110,7 @@ async function main(): Promise<void> {
options: {
help: { type: "boolean", short: "h" },
type: { type: "string", short: "t" },
from: { type: "string", short: "F" },
method: { type: "string" },
url: { type: "string" },
"display-name": { type: "string", short: "n" },