6 lines
109 B
TypeScript
6 lines
109 B
TypeScript
export type RemotionConfigResponse = {
|
|
isRemotion: true;
|
|
cwd: string;
|
|
version: string | null;
|
|
};
|