Skip to main content
Module

x/cliffy/flags/types/string.ts

Command line framework for deno 🦕 Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...
Extremely Popular
Go to Latest
File
import type { ITypeHandler, ITypeInfo } from "../types.ts";
/** String type handler. Excepts any value. */export const string: ITypeHandler<string> = ({ value }: ITypeInfo): string => { return value;};