UNPKG

quarkd

Version:

Mobile UI Components built on Web Components.

34 lines (33 loc) 840 B
import { QuarkElement } from "quarkc"; import "../loading"; export interface Props { width?: number | string; height?: number | string; rotate?: number; image?: string; fontsize?: number | string; fontcolor?: string; text?: string; gapx?: number; gapy?: number; } declare class QuarkWaterMark extends QuarkElement { width?: number; height?: number; rotate: number; fontsize?: number; fontcolor?: string; image?: string; text: string; gapx?: number; gapy?: number; content: string | string[]; init: boolean; waterMarkRef: any; paint(): void; setText(content: string | string[]): void; componentDidMount(): void; shouldComponentUpdate(propName: any, oldValue: any, newValue: any): boolean; render(): any; } export default QuarkWaterMark;