@parcility/kennel
Version:
A comprehensive, easy-to-use native depiction renderer.
10 lines (9 loc) • 418 B
TypeScript
export type { default as DepictionBaseView } from "./base";
import DepictionBaseView from "./base";
export declare type DepictionViewConstructor<T extends DepictionBaseView> = {
new (dictionary: any): T;
viewName: string;
hydrate?(el: HTMLElement): void;
};
export declare const views: Map<string, DepictionViewConstructor<any>>;
export declare const mountable: Map<string, DepictionViewConstructor<any>>;