@remotion/studio
Version:
APIs for interacting with the Remotion Studio
13 lines (12 loc) • 646 B
TypeScript
import type { InputHTMLAttributes } from 'react';
import React from 'react';
import type { RemInputStatus } from './RemInput';
export declare const InputDragger: React.ForwardRefExoticComponent<InputHTMLAttributes<HTMLInputElement> & {
readonly onValueChange: (newVal: number) => void;
readonly onValueChangeEnd?: ((newVal: number) => void) | undefined;
readonly onTextChange: (newVal: string) => void;
readonly status: RemInputStatus;
readonly formatter?: ((str: string | number) => string) | undefined;
readonly rightAlign: boolean;
readonly small?: boolean | undefined;
} & React.RefAttributes<HTMLButtonElement>>;