utility.ts 202 B

123456
  1. class Utility {
  2. static getInputValue(elementId: string): string {
  3. const inputElement: HTMLInputElement = <HTMLInputElement>document.getElementById(elementId);
  4. return inputElement.value;
  5. }
  6. }