@exadel/esl
Version:
Exadel Smart Library (ESL) is the lightweight custom elements library that provide a set of super-flexible components
9 lines (8 loc) • 412 B
TypeScript
import { ESLShareUrlGenericAction } from './url-generic-action';
import type { ESLShareButton } from '../core/esl-share-button';
/** Sharing using default browser link behavior {@link ESLShareBaseAction} implementation */
export declare class ESLShareExternalAction extends ESLShareUrlGenericAction {
static readonly is: string;
/** Does an action to share */
share($button: ESLShareButton): void;
}