Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/interfaces/ILoadEvent.ts
1028 views
1
import { UnixTimestamp } from './GenericTypes';
2
3
type EventName = string;
4
type Url = string;
5
6
export type ILoadEvent = [EventName, Url, UnixTimestamp];
7
8