Skip to content

Commit

Permalink
fix: commit漏れ
Browse files Browse the repository at this point in the history
  • Loading branch information
narirou committed Dec 7, 2024
1 parent fd0af0e commit bae0738
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions frontend/app/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import type {
OwnerGetChairsResponse,
OwnerGetSalesResponse,
} from "./api/api-components";
import type { Coordinate as ApiCoodinate } from "./api/api-schemas";

export type AccessToken = string;

Expand All @@ -16,20 +15,22 @@ export type ClientAppChair = {
}>;
};

export type Coordinate = { latitude: number; longitude: number };

export type DisplayPos = {
x: number;
y: number;
};

export type Distance = { horizontalDistance: number; verticalDistance: number };

export type NearByChair = {
id: string;
name: string;
model: string;
current_coordinate: Coordinate;
};

export type Coordinate = ApiCoodinate;

export type CampaignData = {
invitationCode: string;
registedAt: string;
Expand Down

0 comments on commit bae0738

Please sign in to comment.