- Implements API methods through right click - Refactor events - Refactor usage of setHistory and setHistoryCurrentStep into a single function - Update ContainerOperations documentations - Added AddContainers in order to add multiple containers + refactor AddContainer to use it - Fix regression - Fix AddContainer at index
12 lines
288 B
TypeScript
12 lines
288 B
TypeScript
/* eslint-disable @typescript-eslint/naming-convention */
|
|
import { AddMethod } from '../Enums/AddMethod';
|
|
import { IImage } from './IImage';
|
|
|
|
export interface IAction {
|
|
Id: string
|
|
CustomLogo: IImage
|
|
Label: string
|
|
Description: string
|
|
Action: string
|
|
AddingBehavior: AddMethod
|
|
}
|