@dooboostore/dom-render
Version:
html view template engine
19 lines (18 loc) • 482 B
text/typescript
import {Router} from '@dooboostore/core-web';
import {Attrs} from './Attrs';
import {RawSet} from './RawSet';
/** @deprecated */
export type CreatorMetaData = {
thisVariableName?: string | null;
thisFullVariableName?: string | null;
componentKey?: string | null;
rawSet: RawSet;
scripts?: { [n: string]: any };
router?: Router;
innerHTML: string;
drAttrs?: Attrs;
rootCreator: any;
attribute: any;
creator: any;
// render?: Render;
}