Skip to content

Instantly share code, notes, and snippets.

@phenomnomnominal
Created May 30, 2019 04:48
Show Gist options
  • Save phenomnomnominal/4f3283f1e8abc905f7e78af6f2410d2d to your computer and use it in GitHub Desktop.
Save phenomnomnominal/4f3283f1e8abc905f7e78af6f2410d2d to your computer and use it in GitHub Desktop.
import { Component, Input } from '@angular/core';
import { Value, isBool, isNotNull } from '@trademe/ensure';
@Component({
selector: 'hello'
// ...
})
export class HelloComponent {
@Value(isBool, isNotNull) @Input()
public primary: boolean;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment