9 lines
196 B
TypeScript
9 lines
196 B
TypeScript
/**
|
|
* Record page view input data transfer object
|
|
* Input for recording a page view event
|
|
*/
|
|
export interface RecordPageViewInputDto {
|
|
path: string;
|
|
userId?: string;
|
|
sessionId?: string;
|
|
} |