import { Component, OnInit } from '@angular/core'; @Component({ selector: 'big-number-demo', template: `

{{ bigNum }}

{{ bigNumr }}

`, }) export class BigNumberDemoComponent implements OnInit { min = ''; max = ''; constructor() { } ngOnInit(): void { } }