UNPKG

@remotion/renderer

Version:

Render Remotion videos using Node.js or Bun

16 lines (15 loc) 443 B
type PortStatus = 'available' | 'unavailable'; export declare const testPortAvailableOnMultipleHosts: ({ hosts, port, }: { port: number; hosts: string[]; }) => Promise<PortStatus>; export declare const getDesiredPort: ({ desiredPort, from, hostsToTry, to, }: { desiredPort: number | undefined; from: number; to: number; hostsToTry: string[]; }) => Promise<{ port: number; unlockPort: () => void; }>; export {};