AIPromptModule
Class
Represents the NgModule for the AIPrompt component.
Definition
Package:@progress/kendo-angular-conversational-ui
Syntax:
ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AIPromptModule } from '@progress/kendo-angular-conversational-ui';
import { AppComponent } from './app.component';
@NgModule({
imports: [BrowserModule, AIPromptModule],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule {}