type ActivityRouter.HasWildcard
True if the pattern ends with a wildcard.
type HasWildcard<T extends string> = T extends `${string}/*`
? true
: T extends "*"
? true
: false;Related
class ActivityRouter
A class that manages activation and deactivation of activities, with support for path-based routing.
