I have a component for viewing file and one of the input variables can have both the values as string and blob
@Input() source : string | Blob;
now, how can I differentiate that source is a string or blob. I have to process if the source is Blob.