File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ interface VariationContent {
2323 _ldMeta ?: LDMeta ;
2424}
2525
26- export class AIClientImpl implements LDAIClient {
26+ export class LDAIClientImpl implements LDAIClient {
2727 private _ldClient : LDClient ;
2828
2929 constructor ( ldClient : LDClient ) {
Original file line number Diff line number Diff line change 11import { LDClient } from '@launchdarkly/node-server-sdk' ;
22
33import { LDAIClient } from './api/AIClient' ;
4- import { AIClientImpl } from './LDAIClientImpl' ;
4+ import { LDAIClientImpl } from './LDAIClientImpl' ;
55
66/**
77 * Initialize a new AI client. This client will be used to perform any AI operations.
88 * @param ldClient The base LaunchDarkly client.
99 * @returns A new AI client.
1010 */
1111export function initAi ( ldClient : LDClient ) : LDAIClient {
12- return new AIClientImpl ( ldClient ) ;
12+ return new LDAIClientImpl ( ldClient ) ;
1313}
1414
1515export * from './api' ;
You can’t perform that action at this time.
0 commit comments