nx-ngrok
Version:
Ngrok support for Nx
14 lines (12 loc) • 319 B
TypeScript
import type { Ngrok } from 'ngrok';
export interface TunnelGeneratorSchema {
address?: string | number;
auth?: string;
project: string;
name: string;
port?: 'targetDefault' | 'auto' | number;
protocol?: Ngrok.Options['proto'];
region?: Ngrok.Options['region'];
target?: string;
subdomain?: string;
}