BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { NumericTextBoxModule } from '@syncfusion/ej2-angular-inputs';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
NumericTextBoxModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
|