Skip to content

Commit

Permalink
fix ts type validation
Browse files Browse the repository at this point in the history
  • Loading branch information
yeze322 committed Apr 29, 2020
1 parent 493738b commit 57b3490
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Composer/packages/lib/shared/src/types/shell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ export interface ShellApi {
removeLgTemplates: (id: string, templateNames: string[]) => Promise<void>;
getLuIntent: (id: string, intentName: string) => LuIntentSection | undefined;
getLuIntents: (id: string) => LuIntentSection[];
addLuIntent: (id: string, intentName: string, intent: LuIntentSection | undefined) => Promise<void>;
updateLuIntent: (id: string, intentName: string, intent: LuIntentSection | undefined) => Promise<void>;
addLuIntent: (id: string, intentName: string, intent: LuIntentSection) => Promise<void>;
updateLuIntent: (id: string, intentName: string, intent: LuIntentSection) => Promise<void>;
removeLuIntent: (id: string, intentName: string) => void;
updateRegExIntent: (id: string, intentName: string, pattern: string) => void;
createDialog: (actions: any) => Promise<string | null>;
Expand Down

0 comments on commit 57b3490

Please sign in to comment.