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