mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
1178686a4c
swc_bundler: - Fix remapping of exports. (denoland/deno#9350)
20 lines
535 B
TypeScript
20 lines
535 B
TypeScript
// Loaded from https://deno.land/x/cliffy@v0.12.1/packages/command/types/action-list.ts
|
|
|
|
|
|
import { Command } from '../lib/command.ts';
|
|
import { StringType } from './string.ts';
|
|
|
|
export class ActionListType extends StringType {
|
|
|
|
constructor( protected cmd: Command ) {
|
|
super();
|
|
}
|
|
|
|
public complete(): string[] {
|
|
return this.cmd.getCompletions()
|
|
.map( type => type.name )
|
|
// filter unique values
|
|
.filter( ( value, index, self ) => self.indexOf( value ) === index );
|
|
}
|
|
}
|