Updated package name to include org
This commit is contained in:
21
src/index.ts
21
src/index.ts
@@ -1,11 +1,20 @@
|
||||
export * from './identity';
|
||||
export * from './identity.types';
|
||||
export type * from './identity.types';
|
||||
import * as identityTypes from './identity.types';
|
||||
import type * as identityTypesTypes from './identity.types';
|
||||
|
||||
export * from './crypto';
|
||||
export * from './crypto.types';
|
||||
export type * from './crypto.types';
|
||||
import * as cryptoTypes from './crypto.types';
|
||||
import type * as cryptoTypesTypes from './crypto.types';
|
||||
|
||||
export * from './packet';
|
||||
export * from './packet.types';
|
||||
export type * from './packet.types';
|
||||
import * as packetTypes from './packet.types';
|
||||
import type * as packetTypesTypes from './packet.types';
|
||||
|
||||
export type {
|
||||
identityTypes,
|
||||
identityTypesTypes,
|
||||
cryptoTypes,
|
||||
cryptoTypesTypes,
|
||||
packetTypes,
|
||||
packetTypesTypes
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user