UNPKG

@sutton-signwriting/sgnw-components

Version:

a javascript package of web components for use with the SignWriting script.

23 lines (22 loc) 637 B
import { EventEmitter } from '../../stencil-public-runtime'; export declare class SgnwPaletteSymbol { el: HTMLElement; protected draggie: any; /** SWU character for symbol */ symbol: string; sgnw: boolean; /** click event for the symbol palette */ paletteSymbolClick: EventEmitter<string>; paletteSymbolClickHandler(): void; /** drop event for the signbox and sequence */ paletteSymbolDrop: EventEmitter<{ encoding: string; symbol: string; x: number; y: number; }>; paletteSymbolDropHandler({}: {}, pointer: any): void; connectedCallback(): void; componentDidLoad(): void; render(): any; }