@remotion/studio
Version:
APIs for interacting with the Remotion Studio
15 lines (14 loc) • 328 B
TypeScript
import React from 'react';
type SetErrors = {
setErrors: (errs: State) => void;
addError: (err: Error) => void;
};
export declare const setErrorsRef: React.RefObject<SetErrors | null>;
type State = {
type: 'clear';
} | {
type: 'errors';
errors: Error[];
};
export declare const Overlay: React.FC;
export {};