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;
}
