stencil-quantum
Version:
Experience the quantum realm of stencil.
13 lines (12 loc) • 309 B
TypeScript
import { QuantumKey } from '../../libs';
export declare class QuantumDisplay {
el: HTMLQuantumDisplayElement;
bind: QuantumKey<any, any>;
name?: string;
namespace?: string;
debug?: boolean;
mapper: (val: any) => string;
value: string;
componentWillLoad(): Promise<void>;
render(): string;
}