@decaf-ts/utils
Version:
module management utils for decaf-ts
24 lines (23 loc) • 652 B
text/typescript
import { LoggingConfig } from "@decaf-ts/logging";
import { Command } from "../command.d.mts";
import { DefaultCommandValues } from "../constants.d.mts";
declare const options: {
maxTraversal: {
type: string;
default: string;
};
tokenFiles: {
type: string;
multiple: boolean;
default: string[];
};
};
export declare class NpmTokenCommand extends Command<typeof options, void> {
constructor();
protected help(): void;
protected run(answers: LoggingConfig & typeof DefaultCommandValues & {
maxTraversal: unknown;
tokenFiles: unknown;
}): Promise<void>;
}
export {};