mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-04-20 05:26:20 +00:00
8 lines
278 B
TypeScript
8 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}`;
|
|
}
|