@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
20 lines • 560 B
TypeScript
export class DomElementBindingDescription {
/**
*
* @param {string} selector
* @param {function(Element):DomElementProcessor} processor
* @return {DomElementBindingDescription}
*/
static from({ selector, processor }: string): DomElementBindingDescription;
/**
* css selector
* @type {string}
*/
selector: string;
/**
*
* @type {function(Element):DomElementProcessor}
*/
processor: (arg0: Element) => DomElementProcessor;
}
//# sourceMappingURL=DomElementBindingDescription.d.ts.map