Created
May 30, 2019 04:48
-
-
Save phenomnomnominal/4f3283f1e8abc905f7e78af6f2410d2d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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