New to Kendo UI for Angular? Start a free 30-day trial
SignatureModule
Defines the NgModule
for the Signature component.
Use this module to add the Signature component to your NgModule-based Angular application.
typescript
import { SignatureModule } from '@progress/kendo-angular-inputs';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, SignatureModule],
bootstrap: [AppComponent]
})
export class AppModule {}