mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-10 18:27:25 +03:00
7 lines
278 B
TypeScript
7 lines
278 B
TypeScript
export class Topics {
|
|
public static readonly visits = 'https://shlink.io/new-visit';
|
|
|
|
public static readonly orphanVisits = 'https://shlink.io/new-orphan-visit';
|
|
|
|
public static readonly shortUrlVisits = (shortCode: string) => `https://shlink.io/new-visit/${shortCode}`;
|
|
}
|