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