@v4fire/client
Version:
V4Fire client core library
23 lines (17 loc) • 551 B
text/typescript
/*!
* V4Fire Client Core
* https://github.com/V4Fire/Client
*
* Released under the MIT license
* https://github.com/V4Fire/Client/blob/master/LICENSE
*/
import { namespaces as superNamespaces } from '@v4fire/core/core/async/const';
import { ClientNamespaces } from 'core/async/interface';
export * from '@v4fire/core/core/async/const';
export const namespaces = {
...superNamespaces,
...Object.convertEnumToDict(ClientNamespaces)
};
export type NamespacesDictionary = typeof namespaces;
export const
unsuspendRgxp = /:!suspend(?:\b|$)/;