svg-layout-designer-react/src/Interfaces/IAction.ts
2023-02-23 13:54:38 +01:00

12 lines
298 B
TypeScript

/* eslint-disable @typescript-eslint/naming-convention */
import { type AddMethod } from '../Enums/AddMethod';
import { type IImage } from './IImage';
export interface IAction {
Id: string
CustomLogo: IImage
Label: string
Description: string
Action: string
AddingBehavior: AddMethod
}