12 lines
298 B
TypeScript
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
|
|
}
|