UNPKG

@exadel/esl

Version:

Exadel Smart Library (ESL) is the lightweight custom elements library that provide a set of super-flexible components

6 lines (5 loc) 242 B
/** * A decorator utility to postpone callback execution once after the main task execution * (as a microtask produced with Promise) */ export declare function microtask<T>(fn: (...arg: [T?]) => void, thisArg?: object): (arg?: T) => void;