7 lines
157 B
TypeScript
7 lines
157 B
TypeScript
/**
|
|
* Record page view output data transfer object
|
|
* Output from recording a page view
|
|
*/
|
|
export interface RecordPageViewOutputDto {
|
|
success: boolean;
|
|
} |