spotifyplus 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/animated.d.ts +8 -0
- package/animated.js +25164 -0
- package/components.d.ts +283 -0
- package/components.js +25272 -0
- package/entities.d.ts +103 -0
- package/entities.js +131 -0
- package/index.cjs +39 -0
- package/index.d.ts +1 -0
- package/internal/components.d.ts +1115 -0
- package/internal/legacy-animated.d.ts +217 -0
- package/internal/native-animation-core.d.ts +129 -0
- package/internal/native-animation.d.ts +8 -0
- package/internal/renderer.d.ts +163 -0
- package/internal/script-api.d.ts +72 -0
- package/internal/script-registry.d.ts +5 -0
- package/package.json +113 -0
package/components.d.ts
ADDED
|
@@ -0,0 +1,283 @@
|
|
|
1
|
+
import * as Internal from "spotifyplus/internal/components";
|
|
2
|
+
export type * from "spotifyplus/internal/components";
|
|
3
|
+
export interface View extends Internal.View {
|
|
4
|
+
}
|
|
5
|
+
export interface LinearLayout extends Internal.LinearLayout {
|
|
6
|
+
}
|
|
7
|
+
export interface FrameLayout extends Internal.FrameLayout {
|
|
8
|
+
}
|
|
9
|
+
export interface RelativeLayout extends Internal.RelativeLayout {
|
|
10
|
+
}
|
|
11
|
+
export interface PlainView extends Internal.PlainView {
|
|
12
|
+
}
|
|
13
|
+
export interface Text extends Internal.Text {
|
|
14
|
+
}
|
|
15
|
+
export interface TextView extends Internal.TextView {
|
|
16
|
+
}
|
|
17
|
+
export interface TextInput extends Internal.TextInput {
|
|
18
|
+
}
|
|
19
|
+
export interface Button extends Internal.Button {
|
|
20
|
+
}
|
|
21
|
+
export interface ProgressBar extends Internal.ProgressBar {
|
|
22
|
+
}
|
|
23
|
+
export interface ProgressBarHorizontal extends Internal.ProgressBarHorizontal {
|
|
24
|
+
}
|
|
25
|
+
export interface ActivityIndicator extends Internal.ActivityIndicator {
|
|
26
|
+
}
|
|
27
|
+
export interface Slider extends Internal.Slider {
|
|
28
|
+
}
|
|
29
|
+
export interface Image extends Internal.Image {
|
|
30
|
+
}
|
|
31
|
+
export interface ImageButton extends Internal.ImageButton {
|
|
32
|
+
}
|
|
33
|
+
export interface Switch extends Internal.Switch {
|
|
34
|
+
}
|
|
35
|
+
export interface CheckBox extends Internal.CheckBox {
|
|
36
|
+
}
|
|
37
|
+
export interface RadioButton extends Internal.RadioButton {
|
|
38
|
+
}
|
|
39
|
+
export interface RadioGroup extends Internal.RadioGroup {
|
|
40
|
+
}
|
|
41
|
+
export interface ToggleButton extends Internal.ToggleButton {
|
|
42
|
+
}
|
|
43
|
+
export interface Space extends Internal.Space {
|
|
44
|
+
}
|
|
45
|
+
export interface ScriptView extends Internal.ScriptView {
|
|
46
|
+
}
|
|
47
|
+
export interface EditText extends Internal.EditText {
|
|
48
|
+
}
|
|
49
|
+
export interface SeekBar extends Internal.SeekBar {
|
|
50
|
+
}
|
|
51
|
+
export interface ImageView extends Internal.ImageView {
|
|
52
|
+
}
|
|
53
|
+
export interface RenderView extends Internal.RenderView {
|
|
54
|
+
}
|
|
55
|
+
export interface CanvasView extends Internal.CanvasView {
|
|
56
|
+
}
|
|
57
|
+
export interface SafeAreaView extends Internal.SafeAreaView {
|
|
58
|
+
}
|
|
59
|
+
export interface ScrollView extends Internal.ScrollView {
|
|
60
|
+
}
|
|
61
|
+
export interface HorizontalScrollView extends Internal.HorizontalScrollView {
|
|
62
|
+
}
|
|
63
|
+
export interface Pressable extends Internal.Pressable {
|
|
64
|
+
}
|
|
65
|
+
export interface TouchableOpacity extends Internal.TouchableOpacity {
|
|
66
|
+
}
|
|
67
|
+
export interface FlatList<ItemT = any> extends Internal.FlatList<ItemT> {
|
|
68
|
+
}
|
|
69
|
+
export interface HorizontalStackLayout extends Internal.HorizontalStackLayout {
|
|
70
|
+
}
|
|
71
|
+
export interface VerticalStackLayout extends Internal.VerticalStackLayout {
|
|
72
|
+
}
|
|
73
|
+
export interface Row extends Internal.Row {
|
|
74
|
+
}
|
|
75
|
+
export interface Column extends Internal.Column {
|
|
76
|
+
}
|
|
77
|
+
export declare const createNativeComponent: typeof Internal.createNativeComponent;
|
|
78
|
+
export declare const NativeView: typeof Internal.NativeView;
|
|
79
|
+
export declare const View: typeof Internal.View;
|
|
80
|
+
export declare const LinearLayout: typeof Internal.LinearLayout;
|
|
81
|
+
export declare const FrameLayout: typeof Internal.FrameLayout;
|
|
82
|
+
export declare const RelativeLayout: typeof Internal.RelativeLayout;
|
|
83
|
+
export declare const PlainView: typeof Internal.PlainView;
|
|
84
|
+
export declare const Text: typeof Internal.Text;
|
|
85
|
+
export declare const TextView: typeof Internal.TextView;
|
|
86
|
+
export declare const TextInput: typeof Internal.TextInput;
|
|
87
|
+
export declare const Button: typeof Internal.Button;
|
|
88
|
+
export declare const ProgressBar: typeof Internal.ProgressBar;
|
|
89
|
+
export declare const ProgressBarHorizontal: typeof Internal.ProgressBarHorizontal;
|
|
90
|
+
export declare const ActivityIndicator: typeof Internal.ActivityIndicator;
|
|
91
|
+
export declare const Slider: typeof Internal.Slider;
|
|
92
|
+
export declare const Image: typeof Internal.Image;
|
|
93
|
+
export declare const ImageButton: typeof Internal.ImageButton;
|
|
94
|
+
export declare const Switch: typeof Internal.Switch;
|
|
95
|
+
export declare const CheckBox: typeof Internal.CheckBox;
|
|
96
|
+
export declare const RadioButton: typeof Internal.RadioButton;
|
|
97
|
+
export declare const RadioGroup: typeof Internal.RadioGroup;
|
|
98
|
+
export declare const ToggleButton: typeof Internal.ToggleButton;
|
|
99
|
+
export declare const Space: typeof Internal.Space;
|
|
100
|
+
export declare const ScriptView: typeof Internal.ScriptView;
|
|
101
|
+
export declare const EditText: typeof Internal.EditText;
|
|
102
|
+
export declare const SeekBar: typeof Internal.SeekBar;
|
|
103
|
+
export declare const ImageView: typeof Internal.ImageView;
|
|
104
|
+
export declare const RenderView: typeof Internal.RenderView;
|
|
105
|
+
export declare const CanvasView: typeof Internal.CanvasView;
|
|
106
|
+
export declare const SafeAreaView: typeof Internal.SafeAreaView;
|
|
107
|
+
export declare const ScrollView: typeof Internal.ScrollView;
|
|
108
|
+
export declare const HorizontalScrollView: typeof Internal.HorizontalScrollView;
|
|
109
|
+
export declare const Pressable: typeof Internal.Pressable;
|
|
110
|
+
export declare const TouchableOpacity: typeof Internal.TouchableOpacity;
|
|
111
|
+
export declare const FlatList: typeof Internal.FlatList;
|
|
112
|
+
export declare const HorizontalStackLayout: typeof Internal.HorizontalStackLayout;
|
|
113
|
+
export declare const VerticalStackLayout: typeof Internal.VerticalStackLayout;
|
|
114
|
+
export declare const Row: typeof Internal.Row;
|
|
115
|
+
export declare const Column: typeof Internal.Column;
|
|
116
|
+
export declare const StyleSheet: typeof Internal.StyleSheet;
|
|
117
|
+
export declare const Animated: typeof Internal.Animated;
|
|
118
|
+
declare const _default: {
|
|
119
|
+
createNativeComponent: typeof Internal.createNativeComponent;
|
|
120
|
+
NativeView: typeof Internal.createNativeComponent;
|
|
121
|
+
View: Internal.SpotifyPlusComponent<Internal.ViewProps, Internal.View>;
|
|
122
|
+
LinearLayout: Internal.SpotifyPlusComponent<Internal.ViewProps, Internal.LinearLayout>;
|
|
123
|
+
FrameLayout: Internal.SpotifyPlusComponent<Internal.FrameLayoutProps, Internal.FrameLayout>;
|
|
124
|
+
RelativeLayout: Internal.SpotifyPlusComponent<Internal.RelativeLayoutProps, Internal.RelativeLayout>;
|
|
125
|
+
PlainView: Internal.SpotifyPlusComponent<Internal.PlainViewProps, Internal.PlainView>;
|
|
126
|
+
Text: Internal.SpotifyPlusComponent<Internal.TextProps, Internal.Text>;
|
|
127
|
+
TextView: Internal.SpotifyPlusComponent<Internal.TextProps, Internal.TextView>;
|
|
128
|
+
TextInput: Internal.SpotifyPlusComponent<Internal.TextInputProps, Internal.TextInput>;
|
|
129
|
+
Button: Internal.SpotifyPlusComponent<Internal.ButtonProps, Internal.Button>;
|
|
130
|
+
ProgressBar: Internal.SpotifyPlusComponent<Internal.ProgressBarProps, Internal.ProgressBar>;
|
|
131
|
+
ProgressBarHorizontal: Internal.SpotifyPlusComponent<Internal.ProgressBarProps, Internal.ProgressBarHorizontal>;
|
|
132
|
+
ActivityIndicator: Internal.SpotifyPlusComponent<Internal.ActivityIndicatorProps, Internal.ActivityIndicator>;
|
|
133
|
+
Slider: Internal.SpotifyPlusComponent<Internal.SliderProps, Internal.Slider>;
|
|
134
|
+
Image: Internal.SpotifyPlusComponent<Internal.ImageProps, Internal.Image>;
|
|
135
|
+
ImageButton: Internal.SpotifyPlusComponent<Internal.ImageButtonProps, Internal.ImageButton>;
|
|
136
|
+
Switch: Internal.SpotifyPlusComponent<Internal.SwitchProps, Internal.Switch>;
|
|
137
|
+
CheckBox: Internal.SpotifyPlusComponent<Internal.CheckBoxProps, Internal.CheckBox>;
|
|
138
|
+
RadioButton: Internal.SpotifyPlusComponent<Internal.RadioButtonProps, Internal.RadioButton>;
|
|
139
|
+
RadioGroup: Internal.SpotifyPlusComponent<Internal.RadioGroupProps, Internal.RadioGroup>;
|
|
140
|
+
ToggleButton: Internal.SpotifyPlusComponent<Internal.ToggleButtonProps, Internal.ToggleButton>;
|
|
141
|
+
Space: Internal.SpotifyPlusComponent<Internal.SpaceProps, Internal.Space>;
|
|
142
|
+
ScriptView: Internal.SpotifyPlusComponent<Internal.ScriptViewProps, Internal.ScriptView>;
|
|
143
|
+
EditText: Internal.SpotifyPlusComponent<Internal.TextInputProps, Internal.EditText>;
|
|
144
|
+
SeekBar: Internal.SpotifyPlusComponent<Internal.SliderProps, Internal.SeekBar>;
|
|
145
|
+
ImageView: Internal.SpotifyPlusComponent<Internal.ImageProps, Internal.ImageView>;
|
|
146
|
+
RenderView: Internal.SpotifyPlusComponent<Internal.ScriptViewProps, Internal.RenderView>;
|
|
147
|
+
CanvasView: Internal.SpotifyPlusComponent<Internal.ScriptViewProps, Internal.CanvasView>;
|
|
148
|
+
SafeAreaView: Internal.SpotifyPlusComponent<Internal.ViewProps, Internal.SafeAreaView>;
|
|
149
|
+
ScrollView: Internal.SpotifyPlusComponent<Internal.ScrollViewProps, Internal.ScrollView>;
|
|
150
|
+
HorizontalScrollView: Internal.SpotifyPlusComponent<Internal.HorizontalScrollViewProps, Internal.HorizontalScrollView>;
|
|
151
|
+
Pressable: Internal.SpotifyPlusComponent<Internal.PressableProps, Internal.Pressable>;
|
|
152
|
+
TouchableOpacity: Internal.SpotifyPlusComponent<Internal.TouchableOpacityProps, Internal.TouchableOpacity>;
|
|
153
|
+
FlatList: Internal.FlatListComponent;
|
|
154
|
+
HorizontalStackLayout: Internal.SpotifyPlusComponent<Internal.ViewProps, Internal.HorizontalStackLayout>;
|
|
155
|
+
VerticalStackLayout: Internal.SpotifyPlusComponent<Internal.ViewProps, Internal.VerticalStackLayout>;
|
|
156
|
+
Row: Internal.SpotifyPlusComponent<Internal.ViewProps, Internal.Row>;
|
|
157
|
+
Column: Internal.SpotifyPlusComponent<Internal.ViewProps, Internal.Column>;
|
|
158
|
+
StyleSheet: {
|
|
159
|
+
create<T extends Record<string, Internal.RNStyle>>(styles: T): T;
|
|
160
|
+
flatten(style: Internal.StyleProp<Internal.RNStyle>): {
|
|
161
|
+
[x: string]: unknown;
|
|
162
|
+
};
|
|
163
|
+
absoluteFillObject: {
|
|
164
|
+
position: "absolute";
|
|
165
|
+
top: number;
|
|
166
|
+
right: number;
|
|
167
|
+
bottom: number;
|
|
168
|
+
left: number;
|
|
169
|
+
};
|
|
170
|
+
absoluteFill: {
|
|
171
|
+
position: "absolute";
|
|
172
|
+
top: number;
|
|
173
|
+
right: number;
|
|
174
|
+
bottom: number;
|
|
175
|
+
left: number;
|
|
176
|
+
};
|
|
177
|
+
};
|
|
178
|
+
Animated: {
|
|
179
|
+
Legacy: {
|
|
180
|
+
Value: typeof import("spotifyplus/internal/legacy-animated").Value;
|
|
181
|
+
ValueXY: typeof import("spotifyplus/internal/legacy-animated").ValueXY;
|
|
182
|
+
timing: typeof import("spotifyplus/internal/legacy-animated").timing;
|
|
183
|
+
spring: typeof import("spotifyplus/internal/legacy-animated").spring;
|
|
184
|
+
decay: typeof import("spotifyplus/internal/legacy-animated").decay;
|
|
185
|
+
delay: typeof import("spotifyplus/internal/legacy-animated").delay;
|
|
186
|
+
sequence: typeof import("spotifyplus/internal/legacy-animated").sequence;
|
|
187
|
+
parallel: typeof import("spotifyplus/internal/legacy-animated").parallel;
|
|
188
|
+
stagger: typeof import("spotifyplus/internal/legacy-animated").stagger;
|
|
189
|
+
loop: typeof import("spotifyplus/internal/legacy-animated").loop;
|
|
190
|
+
add: typeof import("spotifyplus/internal/legacy-animated").add;
|
|
191
|
+
subtract: typeof import("spotifyplus/internal/legacy-animated").subtract;
|
|
192
|
+
multiply: typeof import("spotifyplus/internal/legacy-animated").multiply;
|
|
193
|
+
divide: typeof import("spotifyplus/internal/legacy-animated").divide;
|
|
194
|
+
modulo: typeof import("spotifyplus/internal/legacy-animated").modulo;
|
|
195
|
+
event: typeof import("spotifyplus/internal/legacy-animated").event;
|
|
196
|
+
createAnimatedComponent: typeof import("spotifyplus/internal/legacy-animated").createAnimatedComponent;
|
|
197
|
+
useAnimatedValue: typeof import("spotifyplus/internal/legacy-animated").useAnimatedValue;
|
|
198
|
+
Easing: {
|
|
199
|
+
linear: (t: number) => number;
|
|
200
|
+
ease: (t: number) => number;
|
|
201
|
+
quad: (t: number) => number;
|
|
202
|
+
cubic: (t: number) => number;
|
|
203
|
+
sin: (t: number) => number;
|
|
204
|
+
circle: (t: number) => number;
|
|
205
|
+
exp: (t: number) => number;
|
|
206
|
+
back: (s?: number) => (t: number) => number;
|
|
207
|
+
bounce: (t: number) => number;
|
|
208
|
+
in: (easing: import("spotifyplus/internal/legacy-animated").EasingFunction) => (t: number) => number;
|
|
209
|
+
out: (easing: import("spotifyplus/internal/legacy-animated").EasingFunction) => (t: number) => number;
|
|
210
|
+
inOut: (easing: import("spotifyplus/internal/legacy-animated").EasingFunction) => (t: number) => number;
|
|
211
|
+
};
|
|
212
|
+
};
|
|
213
|
+
View: import("react").ComponentType<import("spotifyplus/react/Animated/core").AnimatedComponentProps<Internal.RefableProps<Internal.ViewProps, Internal.View>>>;
|
|
214
|
+
Text: import("react").ComponentType<import("spotifyplus/react/Animated/core").AnimatedComponentProps<Internal.RefableProps<Internal.TextProps, Internal.Text>>>;
|
|
215
|
+
Image: import("react").ComponentType<import("spotifyplus/react/Animated/core").AnimatedComponentProps<Internal.RefableProps<Internal.ImageProps, Internal.Image>>>;
|
|
216
|
+
ScriptView: import("react").ComponentType<import("spotifyplus/react/Animated/core").AnimatedComponentProps<Internal.RefableProps<Internal.ScriptViewProps, Internal.ScriptView>>>;
|
|
217
|
+
RenderView: import("react").ComponentType<import("spotifyplus/react/Animated/core").AnimatedComponentProps<Internal.RefableProps<Internal.ScriptViewProps, Internal.RenderView>>>;
|
|
218
|
+
CanvasView: import("react").ComponentType<import("spotifyplus/react/Animated/core").AnimatedComponentProps<Internal.RefableProps<Internal.ScriptViewProps, Internal.CanvasView>>>;
|
|
219
|
+
ScrollView: import("react").ComponentType<import("spotifyplus/react/Animated/core").AnimatedComponentProps<{
|
|
220
|
+
style?: any;
|
|
221
|
+
}>>;
|
|
222
|
+
FlatList: import("react").ComponentType<import("spotifyplus/react/Animated/core").AnimatedComponentProps<{
|
|
223
|
+
style?: any;
|
|
224
|
+
}>>;
|
|
225
|
+
isAnimatedNodeLike(value: unknown): value is import("spotifyplus/react/Animated/core").NativeAnimatedNodeLike;
|
|
226
|
+
serializeAnimatedNode(value: unknown): any;
|
|
227
|
+
useSharedValue<T = number>(initial: T): import("spotifyplus/react/Animated/core").SharedValue<T>;
|
|
228
|
+
useDerivedValue<T = any>(factory: () => T, deps?: React.DependencyList): import("spotifyplus/react/Animated/core").DerivedValue<import("spotifyplus/react/Animated/core").AnimatedResolvedValue<T>>;
|
|
229
|
+
useAnimatedStyle<T extends Record<string, any>>(factory: () => T, deps?: React.DependencyList): import("spotifyplus/react/Animated/core").AnimatedStylePayload<T>;
|
|
230
|
+
useAnimatedProps<T extends Record<string, any>>(factory: () => T, deps?: React.DependencyList): import("spotifyplus/react/Animated/core").AnimatedPropsPayload<T>;
|
|
231
|
+
playbackClock(options?: {
|
|
232
|
+
unit?: "ms" | "seconds";
|
|
233
|
+
offset?: number;
|
|
234
|
+
}): import("spotifyplus/react/Animated/core").AnimatedExpression<number>;
|
|
235
|
+
interpolate(value: unknown, inputRange: number[], outputRange: number[], options?: import("spotifyplus/react/Animated/core").InterpolateOptions): import("spotifyplus/react/Animated/core").AnimatedExpression<number>;
|
|
236
|
+
interpolateColor(value: unknown, inputRange: number[], outputRange: Array<string | number>, options?: import("spotifyplus/react/Animated/core").InterpolateOptions): import("spotifyplus/react/Animated/core").AnimatedExpression<string | number>;
|
|
237
|
+
withTiming<T = number>(toValue: T | import("spotifyplus/react/Animated/core").AnimatedExpression<T>, config?: import("spotifyplus/react/Animated/core").TimingConfig): import("spotifyplus/react/Animated/core").AnimationDescriptor<T>;
|
|
238
|
+
withSpring<T = number>(toValue: T | import("spotifyplus/react/Animated/core").AnimatedExpression<T>, config?: import("spotifyplus/react/Animated/core").SpringConfig): import("spotifyplus/react/Animated/core").AnimationDescriptor<T>;
|
|
239
|
+
withDelay<T = any>(delayMs: number, child: import("spotifyplus/react/Animated/core").AnimationDescriptor<T>): import("spotifyplus/react/Animated/core").AnimationDescriptor<T>;
|
|
240
|
+
withSequence<T = any>(...animations: import("spotifyplus/react/Animated/core").AnimationDescriptor<T>[]): import("spotifyplus/react/Animated/core").AnimationDescriptor<T>;
|
|
241
|
+
cancelAnimation(sharedValue: import("spotifyplus/react/Animated/core").SharedValue<any>): void;
|
|
242
|
+
runOnUI<T extends (...args: any[]) => any>(fn: T): T;
|
|
243
|
+
createAnimatedComponent<P extends {
|
|
244
|
+
style?: any;
|
|
245
|
+
}>(Component: React.ComponentType<P>): React.ComponentType<import("spotifyplus/react/Animated/core").AnimatedComponentProps<P>>;
|
|
246
|
+
AnimatedExpression: typeof import("spotifyplus/react/Animated/core").AnimatedExpression;
|
|
247
|
+
SharedValue: typeof import("spotifyplus/react/Animated/core").SharedValue;
|
|
248
|
+
DerivedValue: typeof import("spotifyplus/react/Animated/core").DerivedValue;
|
|
249
|
+
add: (...values: unknown[]) => import("spotifyplus/react/Animated/core").AnimatedExpression<number>;
|
|
250
|
+
subtract: (...values: unknown[]) => import("spotifyplus/react/Animated/core").AnimatedExpression<number>;
|
|
251
|
+
multiply: (...values: unknown[]) => import("spotifyplus/react/Animated/core").AnimatedExpression<number>;
|
|
252
|
+
divide: (...values: unknown[]) => import("spotifyplus/react/Animated/core").AnimatedExpression<number>;
|
|
253
|
+
modulo: (...values: unknown[]) => import("spotifyplus/react/Animated/core").AnimatedExpression<number>;
|
|
254
|
+
clamp: (input: unknown, min: number, max: number) => import("spotifyplus/react/Animated/core").AnimatedExpression<number>;
|
|
255
|
+
Value: typeof import("spotifyplus/internal/legacy-animated").Value;
|
|
256
|
+
ValueXY: typeof import("spotifyplus/internal/legacy-animated").ValueXY;
|
|
257
|
+
timing: typeof import("spotifyplus/internal/legacy-animated").timing;
|
|
258
|
+
spring: typeof import("spotifyplus/internal/legacy-animated").spring;
|
|
259
|
+
decay: typeof import("spotifyplus/internal/legacy-animated").decay;
|
|
260
|
+
delay: typeof import("spotifyplus/internal/legacy-animated").delay;
|
|
261
|
+
sequence: typeof import("spotifyplus/internal/legacy-animated").sequence;
|
|
262
|
+
parallel: typeof import("spotifyplus/internal/legacy-animated").parallel;
|
|
263
|
+
stagger: typeof import("spotifyplus/internal/legacy-animated").stagger;
|
|
264
|
+
loop: typeof import("spotifyplus/internal/legacy-animated").loop;
|
|
265
|
+
event: typeof import("spotifyplus/internal/legacy-animated").event;
|
|
266
|
+
useAnimatedValue: typeof import("spotifyplus/internal/legacy-animated").useAnimatedValue;
|
|
267
|
+
Easing: {
|
|
268
|
+
linear: (t: number) => number;
|
|
269
|
+
ease: (t: number) => number;
|
|
270
|
+
quad: (t: number) => number;
|
|
271
|
+
cubic: (t: number) => number;
|
|
272
|
+
sin: (t: number) => number;
|
|
273
|
+
circle: (t: number) => number;
|
|
274
|
+
exp: (t: number) => number;
|
|
275
|
+
back: (s?: number) => (t: number) => number;
|
|
276
|
+
bounce: (t: number) => number;
|
|
277
|
+
in: (easing: import("spotifyplus/internal/legacy-animated").EasingFunction) => (t: number) => number;
|
|
278
|
+
out: (easing: import("spotifyplus/internal/legacy-animated").EasingFunction) => (t: number) => number;
|
|
279
|
+
inOut: (easing: import("spotifyplus/internal/legacy-animated").EasingFunction) => (t: number) => number;
|
|
280
|
+
};
|
|
281
|
+
};
|
|
282
|
+
};
|
|
283
|
+
export default _default;
|