baublet/w8mngr

View on GitHub
api/dataServices/activity/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ActivityType } from "../../generated";

export type Activity = {
  id: string;
  userId: string;
  name: string;
  description?: string;
  exrx?: string;
  type: ActivityType;
  popularity: number;
  createdAt: Date;
  updatedAt: Date;
  intensity: number;
  archived: Boolean;
  legacyId?: number;
};