@v4fire/core
Version:
V4Fire core library
26 lines (20 loc) • 523 B
text/typescript
/*!
* V4Fire Core
* https://github.com/V4Fire/Core
*
* Released under the MIT license
* https://github.com/V4Fire/Core/blob/master/LICENSE
*/
/**
* [[include:core/async/README.md]]
* @packageDocumentation
*/
import Super from 'core/async/modules/wrappers';
export * from 'core/async/const';
export * from 'core/async/interface';
export * from 'core/async/modules/wrappers';
/**
* Class to control asynchronous operations
*/
export default class Async<CTX extends object = Async<any>> extends Super<CTX> {
}