13 lines
187 B
TypeScript
13 lines
187 B
TypeScript
|
export type View = {
|
||
|
contractId: string
|
||
|
timestamp: number
|
||
|
}
|
||
|
|
||
|
export type UserEvent = ClickEvent
|
||
|
|
||
|
export type ClickEvent = {
|
||
|
type: 'click'
|
||
|
contractId: string
|
||
|
timestamp: number
|
||
|
}
|