UNPKG

484 BTypeScriptView Raw
1import Command from '../../base';
2interface UnregisterInput {
3 confirmDelete: boolean;
4}
5export default class UnregisterSecret extends Command {
6 static description: string;
7 unregisterConfirm: () => Promise<UnregisterInput>;
8 unregisterAPI: (inputs: UnregisterInput) => Promise<UnregisterInput>;
9 logMessage: (inputs: UnregisterInput) => UnregisterInput;
10 sendAnalytics: (inputs: UnregisterInput) => Promise<UnregisterInput>;
11 run(): Promise<void>;
12}
13export {};