htmlでtypescriptの変数を参照

typescriptで

export class HomePage {

public homePage : number = null;

  constructor(private platform: Platform) {

    this.homePage =  1000; <-- I need to bring this variable to my html file
  }
}

となっているとすると、 htmlで以下のように参照できる。

<ion-content>
{{homePage}}
</ion-content>

参考: https://forum.ionicframework.com/t/getting-a-variable-from-ts-file-to-html-file/102189