import PSPoint from "./PSPoint"; export interface PSStrokeIface extends fabric.Object { type: "PSStroke"; startTime?: number; endTime?: number; strokePoints: PSPoint[]; } /** * Pressure-sensitive stroke class * @class PSStroke * @extends fabricjs.Object */ declare const PSStroke: { new (path: PSPoint[], options: any): PSStrokeIface; fromObject: (object: any, callback: Function) => void; }; export default PSStroke;