swc/crates/swc_bundler/tests/.cache/deno/764d8094d4b707e2c06a2b441e2b4bbc56af640e.ts
2021-11-09 20:42:49 +09:00

19 lines
507 B
TypeScript

// Loaded from https://deno.land/x/cliffy@v0.12.1/packages/command/commands/completions/bash.ts
import { Command } from '../../lib/command.ts';
/**
* Generates bash completion code.
*/
export class BashCompletionsCommand extends Command {
public constructor( _cmd?: Command ) {
super();
this.description( 'Generate bash shell completions.' )
.action( () => {
throw new Error( 'Bash completions not supported at this moment.' );
} );
}
}