Files
story-studio/remotion/node_modules/@remotion/studio-server/dist/detect-remotion-server.d.ts
2026-02-21 10:33:18 +01:00

14 lines
295 B
TypeScript

type RemotionDetectionResult = {
type: 'match';
} | {
type: 'mismatch';
} | {
type: 'not-remotion';
};
export declare const detectRemotionServer: ({ port, cwd, hostname, }: {
port: number;
cwd: string;
hostname: string;
}) => Promise<RemotionDetectionResult>;
export {};