clapper / packages /timeline /dist /hooks /useSegmentChanges.d.ts
jbilcke-hf's picture
jbilcke-hf HF Staff
Upload folder using huggingface_hub
60e3020 verified
raw
history blame contribute delete
276 Bytes
import { TimelineSegment } from "@/types";
/**
* Can be used to subscribe to individual changes in a segment
*
* Note: it is not efficient to track everything
*
* @param segment
* @returns
*/
export declare function useSegmentChanges(segment: TimelineSegment): number;