hotspot.decorator.ts 126 Bytes
export function Hotspot(hotspotName: string) {
    return (target: any) => {
        target['hotspot'] = hotspotName;
    }
}