@atproto/common 0.1.1 → 0.2.0

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/README.md CHANGED
@@ -1,3 +1,3 @@
1
1
  # ATP Common Library
2
2
 
3
- A library containing code which is shared between ATP packages.
3
+ A library containing code which is shared between ATP packages.
package/dist/fs.d.ts ADDED
@@ -0,0 +1 @@
1
+ export declare const fileExists: (location: string) => Promise<boolean>;
package/dist/index.d.ts CHANGED
@@ -1,10 +1,6 @@
1
- export * as check from './check';
2
- export * as util from './util';
3
- export * from './async';
4
- export * from './util';
5
- export * from './tid';
1
+ export * from '@atproto/common-web';
2
+ export * from './fs';
6
3
  export * from './ipld';
4
+ export * from './ipld-multi';
7
5
  export * from './logger';
8
- export * from './types';
9
6
  export * from './streams';
10
- export * from './times';