fix(core): update

This commit is contained in:
2023-08-08 01:06:23 +02:00
parent 9d895913eb
commit ebeedc6200
9 changed files with 4690 additions and 9846 deletions

View File

@ -2,7 +2,7 @@
* autocreated commitinfo by @pushrocks/commitinfo
*/
export const commitinfo = {
name: '@designestate/dees-comms',
version: '1.0.23',
name: '@design.estate/dees-comms',
version: '1.0.24',
description: 'a comms module for communicating within the DOM'
}

View File

@ -1,4 +1,3 @@
import { TypedRequest } from '@apiglobal/typedrequest';
import * as plugins from './dees-comms.plugins.js';
let BroadcastChannel = globalThis.BroadcastChannel;
@ -40,7 +39,7 @@ export class DeesComms {
*/
public createTypedRequest<T extends plugins.typedrequestInterfaces.ITypedRequest>(
methodName: T['method']
): TypedRequest<T> {
): plugins.typedrequest.TypedRequest<T> {
const typedrequest = new plugins.typedrequest.TypedRequest(this.typedtarget, methodName);
return typedrequest;
}

View File

@ -1,7 +1,7 @@
// pushrocks scope
import * as smartdelay from '@pushrocks/smartdelay';
import * as typedrequestInterfaces from '@apiglobal/typedrequest-interfaces';
import * as typedrequest from '@apiglobal/typedrequest';
import * as smartdelay from '@push.rocks/smartdelay';
import * as typedrequestInterfaces from '@api.global/typedrequest-interfaces';
import * as typedrequest from '@api.global/typedrequest';
export { smartdelay, typedrequestInterfaces, typedrequest };