@pimzino/claude-code-spec-workflow
Version:
Automated workflows for Claude Code. Includes spec-driven development (Requirements → Design → Tasks → Implementation) with intelligent task execution, optional steering documents and streamlined bug fix workflow (Report → Analyze → Fix → Verify). We have
15 lines • 543 B
TypeScript
import { TunnelProvider, TunnelInstance, ProviderOptions } from './types';
export interface NgrokConfig {
authToken?: string;
region?: string;
}
export declare class NgrokProvider implements TunnelProvider {
private _config?;
name: string;
constructor(_config?: NgrokConfig | undefined);
isAvailable(): Promise<boolean>;
private getNgrokExecutable;
validateConfig(): Promise<void>;
createTunnel(port: number, options: ProviderOptions): Promise<TunnelInstance>;
}
//# sourceMappingURL=ngrok-provider.d.ts.map