Created
May 29, 2019 19:42
-
-
Save phenomnomnominal/699ba10f6260d83f7fc008fff31caae5 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 { isBool } from './is-bool'; | |
@Component({ | |
// ... | |
}) | |
export class HelloComponent { | |
@isBool() @Input() | |
public primary: boolean; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment