alepha 0.7.6 → 0.7.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/topic.d.ts CHANGED
@@ -69,31 +69,15 @@ declare const $topic: {
69
69
  //#endregion
70
70
  //#region src/descriptors/$subscriber.d.ts
71
71
  declare const KEY = "SUBSCRIBER";
72
- /**
73
- *
74
- */
75
72
  interface SubscriberDescriptorOptions<T extends TopicMessageSchema = TopicMessageSchema> {
76
- /**
77
- *
78
- */
79
73
  topic: TopicDescriptor<T>;
80
- /**
81
- *
82
- * @param message
83
- */
84
74
  handler: (message: {
85
75
  payload: Static<T["payload"]>;
86
76
  }) => Promise<void>;
87
77
  }
88
- /**
89
- *
90
- */
91
78
  interface SubscriberDescriptor<T extends TopicMessageSchema = TopicMessageSchema> {
92
79
  [KIND]: typeof KEY;
93
80
  [OPTIONS]: SubscriberDescriptorOptions<T>;
94
- /**
95
- *
96
- */
97
81
  topic: () => TopicDescriptor<T>;
98
82
  }
99
83
  /**