@capgo/cli
Version:
A CLI to upload to capgo servers
16 lines (15 loc) • 629 B
TypeScript
export declare const WAIT_LOG_LOOKBACK_MS: number;
export declare const WAIT_LOG_POLL_MS = 5000;
export declare const WAIT_LOG_CONTINUE_HINT = "Press C to continue if you already verified the update in the Capgo dashboard";
interface WaitLogQuery {
appId: string;
devicesId?: string[];
order: {
key: string;
sortable: 'asc' | 'desc';
}[];
rangeStart: string;
}
export declare function buildWaitLogQuery(appId: string, deviceId: string | undefined, now?: Date, lookbackMs?: number): WaitLogQuery;
export declare function isWaitLogContinueKey(input: string, ctrl?: boolean): boolean;
export {};