iink-ts - v3.2.1
    Preparing search index...

    Type Alias TGesture

    when gestureType = "INSERT", subStrokes represent the two parts when gestureType = "SCRATCH", subStrokes represent the part to substract at the stroke corresponding fullStrokeId

    type TGesture = {
        gestureStrokeId: string;
        gestureType: TGestureType;
        strokeAfterIds: string[];
        strokeBeforeIds: string[];
        strokeIds: string[];
        subStrokes?: { fullStrokeId: string; x: number[]; y: number[] }[];
    }
    Index

    Properties

    gestureStrokeId: string
    gestureType: TGestureType
    strokeAfterIds: string[]
    strokeBeforeIds: string[]
    strokeIds: string[]
    subStrokes?: { fullStrokeId: string; x: number[]; y: number[] }[]