We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5149af4 commit fa14812Copy full SHA for fa14812
src/index.ts
@@ -13,12 +13,15 @@ export const PathBase: PathValue = {};
13
export interface Key {
14
value: Value;
15
time: number;
16
+ index: number;
17
}
18
19
export const KeyBase: Key = {
20
value: "key value",
21
time: 0,
22
+ index: 1,
23
};
24
+
25
export const PointsBase: Vector2D[] = [
26
[0, 0],
27
[100, 0],
0 commit comments