/** * Structure of PIT (Point-In-Time) object */ export interface EsPit { /** * PIT ID */ id: string; /** * Time to live of the PIT */ keep_alive: string; }