UNPKG

@remotion/paths

Version:

Utilities for working with SVG paths

9 lines (8 loc) 398 B
import type { Constructed } from './helpers/construct'; type InstructionAtLength = { index: number; lengthIntoInstruction: number; }; export declare const getInstructionIndexAtLengthFromConstructed: (constructed: Constructed, fractionLength: number) => InstructionAtLength; export declare const getInstructionIndexAtLength: (path: string, length: number) => InstructionAtLength; export {};