UNPKG

@parcility/kennel

Version:

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

8 lines (7 loc) 238 B
import { RenderableElement } from "../renderable"; export default abstract class DepictionBaseView { tintColor?: string; static viewName: string; constructor(depiction: any); abstract make(): Promise<RenderableElement>; }