import { IActionResult } from '.'; export default class ActionResultManager { protected static results: Map; static add(name: string, type: any): IActionResult; static get(name: string): IActionResult | undefined; static getAll(): IActionResult[]; static create(result: string | IActionResult): IActionResult | undefined; }