electron-reactive-event-cli 1.0.80 → 1.0.81
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.
|
@@ -145,9 +145,9 @@ async function GenerateScopedTypes() {
|
|
|
145
145
|
*/
|
|
146
146
|
export function ReactiveEventError<
|
|
147
147
|
ChannelType extends Channel.Error<OwnerType>,
|
|
148
|
-
OwnerType extends
|
|
148
|
+
OwnerType extends EventOwnerImported = EventOwnerImported
|
|
149
149
|
>(
|
|
150
|
-
message:
|
|
150
|
+
message: ReactiveEventErrorMessageImported<PackageKey, ChannelType>
|
|
151
151
|
): ReactiveEventErrorInternalImported<PackageKey, ChannelType>;
|
|
152
152
|
/**
|
|
153
153
|
* An error of an event. Returning this in your handler is how errors are
|
|
@@ -164,13 +164,13 @@ export function ReactiveEventError<
|
|
|
164
164
|
*/
|
|
165
165
|
export function ReactiveEventError<
|
|
166
166
|
ChannelType extends Channel.ErrorPayload<OwnerType>,
|
|
167
|
-
OwnerType extends
|
|
167
|
+
OwnerType extends EventOwnerImported = EventOwnerImported>(
|
|
168
168
|
message: ReactiveEventErrorMessageImported<ChannelType>,
|
|
169
169
|
payload: ReactiveEventErrorPayloadImported<ChannelType>
|
|
170
170
|
): ReactiveEventErrorInternalImported<PackageKey, ChannelType>;
|
|
171
171
|
export function ReactiveEventError<
|
|
172
172
|
ChannelType extends Channel.Error<OwnerType>,
|
|
173
|
-
OwnerType extends
|
|
173
|
+
OwnerType extends EventOwnerImported = EventOwnerImported>(
|
|
174
174
|
message: ReactiveEventErrorMessageImported<PackageKey, ChannelType>,
|
|
175
175
|
payload: ReactiveEventErrorPayloadImported<PackageKey, ChannelType> = EmptyOverloadParameterValueImported
|
|
176
176
|
): ReactiveEventErrorInternalImported<PackageKey, ChannelType>
|