import { IPlace as IBasePlace } from '../place'; import { PlaceType } from '../placeType'; /** * 入場ゲート */ export type IEntranceGate = Pick & { typeOf: PlaceType.Place; identifier: string; }; /** * 入場ゲート検索条件 */ export interface ISearchConditions { limit?: number; page?: number; /** * プロジェクト */ project?: { id?: { $eq?: string; }; }; identifier?: { $eq?: string; $in?: string[]; }; }