14 lines
295 B
TypeScript
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 {};
|