react-cursive-handwrite
Version:
React component to animate cursive handwriting text
10 lines (9 loc) • 317 B
TypeScript
import { LetterPaths } from './Loader';
import { PositionedPath } from './PathCreator';
export interface AssembledText {
paths: PositionedPath[];
totalWidth: number;
maxHeight: number;
totalLength: number;
}
export declare function assembleText(text: string, letterPaths: LetterPaths): AssembledText;