8 lines
128 B
TypeScript
8 lines
128 B
TypeScript
/**
|
|
* Record page view input view data
|
|
*/
|
|
export interface RecordPageViewInputViewData {
|
|
path: string;
|
|
userId?: string;
|
|
}
|