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