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