quarc/core/angular/host-binding.ts

5 lines
144 B
TypeScript

export function HostBinding(hostPropertyName?: string): PropertyDecorator {
return (target: Object, propertyKey: string | symbol) => {
};
}