@dooboostore/dom-render
Version:
html view template engine
9 lines (7 loc) • 311 B
text/typescript
import { RawSet } from '../rawsets/RawSet';
export interface OnChildRenderedByProperty {
onChildRenderedByProperty(key: string, value: any): void;
}
export function isOnChildRenderedByProperty(obj: any): obj is OnChildRenderedByProperty {
return typeof obj?.onChildRenderedByProperty === 'function';
}