/** * Model: EasingEasingFunctionCubicBezier * * THIS FILE HAS BEEN AUTOMATICALLY GENERATED. DO NOT EDIT. * */ /** * A cubic bezier curve that defines the easing. */ export interface EasingEasingFunctionCubicBezier { /** The x component of the first control point. */ x1: number; /** The y component of the first control point. */ y1: number; /** The x component of the second control point. */ x2: number; /** The y component of the second control point. */ y2: number; } //# sourceMappingURL=easing-easing-function-cubic-bezier.d.ts.map