Compare commits

..

2 Commits
0.7.0 ... 0.7.2

Author SHA1 Message Date
34c2df7a1a Fixed import
All checks were successful
Build / Build NPM Project (push) Successful in 16s
Build / Tag Version (push) Successful in 4s
Build / Publish (push) Successful in 7s
2024-04-23 09:09:07 -04:00
1d5509a078 Fixed export
All checks were successful
Build / Build NPM Project (push) Successful in 16s
Build / Tag Version (push) Successful in 4s
Build / Publish (push) Successful in 7s
2024-04-23 09:03:51 -04:00
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@ztimson/utils",
"version": "0.7.0",
"version": "0.7.2",
"description": "Utility library",
"author": "Zak Timson",
"license": "MIT",

View File

@ -1,4 +1,4 @@
import {TypedEmitter, TypedEvents} from './emitter.ts';
import {TypedEmitter, TypedEvents} from './emitter';
export type downloadEvents = TypedEvents & {
complete: (blob: Blob) => any;

View File

@ -1,6 +1,6 @@
export * from './array';
export * from './aset';
export * from './download.ts';
export * from './download';
export * from './emitter';
export * from './errors';
export * from './logger';