import type { MetaEntityCreateOptionAction } from './entity-create-option-action.extension.js'; import type { UmbEntityCreateOptionActionArgs } from './types.js'; import type { UmbAction } from '../action/index.js'; export interface UmbEntityCreateOptionAction extends UmbAction> { /** * The href location, the action will act as a link. * @returns {Promise} */ getHref(): Promise; /** * The `execute` method, the action will act as a button. * @returns {Promise} */ execute(): Promise; }