@duetds/components
Version:
This package includes Duet Components and related tools.
24 lines (23 loc) • 469 B
TypeScript
export declare class DuetParagraph {
/**
* Reference to host HTML element.
*/
element: HTMLElement;
/**
* Theme of the card. Can be one of: default, turva.
*/
theme: string;
/**
* Custom color for the paragraph.
*/
color: string;
/**
* Component lifecycle events.
*/
componentWillLoad(): void;
/**
* render() function
* Always the last one in the class.
*/
render(): any;
}