diff --git a/src/domains/LocationInfo.ts b/src/domains/LocationInfo.ts new file mode 100644 index 0000000..f82d456 --- /dev/null +++ b/src/domains/LocationInfo.ts @@ -0,0 +1,13 @@ +import { NullValueRes } from '../types/common'; + +export type LocationInfo = { + id: Number, + name: string, + thumbnail: NullValueRes<'String', string>, + regency_name: String, + province_name: String, + critic_score: Number, + critic_count: Number, + user_score: Number, + user_count: Number +}