UNPKG

@parcility/kennel

Version:

A comprehensive, easy-to-use native depiction renderer.

21 lines (20 loc) 531 B
import { RenderableElement } from "../renderable"; import DepictionBaseView from "./base"; export default class DepictionLabelView extends DepictionBaseView { text?: string; margins: { left: number; right: number; top: number; bottom: number; }; textColor?: string; weight: string; alignment: string; isActionable: any; isHighlighted: any; fontSize: number; static viewName: string; constructor(dictionary: any); make(): Promise<RenderableElement>; }