UNPKG

233 BTypeScriptView Raw
1import { Command } from '../Command';
2/**
3 * A command that prints the clipanion tokens.
4 */
5export declare class TokensCommand extends Command<any> {
6 static paths: string[][];
7 args: string[];
8 execute(): Promise<void>;
9}