Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions plugin-api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -822,14 +822,26 @@ interface Easing {
| 'EASE_OUT_BACK'
| 'EASE_IN_AND_OUT_BACK'
| 'CUSTOM_CUBIC_BEZIER'
| 'GENTLE'
| 'QUICK'
| 'BOUNCY'
| 'SLOW'
| 'CUSTOM_SPRING'
readonly easingFunctionCubicBezier?: EasingFunctionBezier
readonly easingFunctionSpring?: EasingFunctionSpring
}
interface EasingFunctionBezier {
x1: number
y1: number
x2: number
y2: number
}
interface EasingFunctionSpring {
mass: number
stiffness: number
damping: number
initialVelocity: number
}
declare type OverflowDirection = 'NONE' | 'HORIZONTAL' | 'VERTICAL' | 'BOTH'
declare type OverlayPositionType =
| 'CENTER'
Expand Down