import { Intent } from "./Intent"; import { interfaces } from "inversify"; export interface IIntentRegistry { add(intent: interfaces.Newable): IIntentRegistry; has(name: string): boolean; get(name: string): Intent; getAll(): Intent[]; }