swc/bundler/tests/.cache/deno/681bf9ebab10fb951ce34c6d0feb7967853090f9.ts

21 lines
545 B
TypeScript
Raw Normal View History

// Loaded from https://deno.land/x/cliffy@v0.18.0/command/types/action_list.ts
import type { Command } from "../command.ts";
import { StringType } from "./string.ts";
/** Completion list type. */
export class ActionListType extends StringType {
constructor(protected cmd: Command) {
super();
}
/** Complete action names. */
public complete(): string[] {
return this.cmd.getCompletions()
.map((type) => type.name)
// filter unique values
.filter((value, index, self) => self.indexOf(value) === index);
}
}