Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/replay/shared/interfaces/IWindowLocation.ts
2626 views
1
export enum InternalLocations {
2
Dashboard = 'Dashboard',
3
Settings = 'Settings',
4
History = 'History',
5
}
6
7
type IWindowLocation = keyof typeof InternalLocations;
8
9
export default IWindowLocation;
10
11