Skip to content

Commit b035cde

Browse files
committed
Export BaseQueueTask
1 parent 07c6f55 commit b035cde

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nasriya/atomix",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "Composable helper functions for building reliable systems",
55
"keywords": [
66
"networking",

src/docs/docs.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export type { AccessPermissions, PathAccessPermissions, AccessOptions } from "..
88
export type { DiscoverHostsOptions } from "../domains/network/assets/local";
99
export type { Serializable } from "../domains/http/body-codec";
1010
export type { RandomOptions } from "../domains/utils/docs";
11+
export type { BaseQueueTask } from "../tools/queues/docs";
1112

1213
export type DeepReadonly<T> = {
1314
readonly [P in keyof T]: T[P] extends (...args: any[]) => any

src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ export type {
1414
Prettify,
1515
StringPaddingOptions,
1616
Serializable,
17-
RandomOptions
17+
RandomOptions,
18+
BaseQueueTask,
1819
} from './docs/docs';

0 commit comments

Comments
 (0)