Skip to main content
Module

x/cliffy/command/types/file.ts

Command line framework for deno 🦕 Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...
Extremely Popular
Go to Latest
File
import { StringType } from "./string.ts";
// export interface FileTypeOptions {// dirsOnly?: boolean;// pattern?: string;// ignore?: Array<string>;// }
/** Integer type. */export class FileType extends StringType { constructor() { super(); }
// getOptions(): FileTypeOptions { // return this.opts; // }}