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