@plus45/types 1.2.21 → 1.2.23
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/dist/index.d.ts
CHANGED
|
@@ -17,4 +17,5 @@ import { PublicUser } from "./types/user/public_user";
|
|
|
17
17
|
import { LastExerciseValue } from "./types/exercise/last_exercise";
|
|
18
18
|
import { ExerciseDataPoint } from "./types/exercise/exercise_data_point";
|
|
19
19
|
import { TimeAverage } from "./types/generics/time_average";
|
|
20
|
-
|
|
20
|
+
import { SpotlightSearchResults } from "./search/spotlight_search";
|
|
21
|
+
export { type User, type UserSessionInfo, type AccessToken, type PublicUser, type Exercise, type CompletedExercise, type LastExerciseValue, type ExerciseDataPoint, type Workout, type WorkoutExecution, type Schedule, type AssignedSchedule, Post, BatchPost, PostMedia, AuthenticationActionData, ResetPasswordAuthenticationData, WeekLayout, TimeAverage, ExerciseType, ExerciseUnit, ScheduleDay, ScheduleRecurrence, AuthType, SpotlightSearchResults, WeightUnits, DistanceUnits, TimeUnits };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import Exercise from "../types/exercise/exercise";
|
|
2
|
+
import { PublicUser } from "../types/user/public_user";
|
|
3
|
+
import { Workout } from "../types/workout/workout";
|
|
4
|
+
export interface SpotlightSearchResults {
|
|
5
|
+
users: PublicUser[];
|
|
6
|
+
workouts: Workout[];
|
|
7
|
+
exercises: Exercise[];
|
|
8
|
+
}
|