Skip to content

Commit 5f60a16

Browse files
committed
chore: 🤖 improve Typedocs
1 parent 5fcb323 commit 5f60a16

File tree

7 files changed

+33
-19
lines changed

7 files changed

+33
-19
lines changed

src/bencode/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export * from './types';
2+
export * from './BencodeEncoder';
3+
export * from './BencodeDecoder';

src/cbor/index.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
export * from './types';
2+
export * from './CborEncoderFast';
3+
export * from './CborEncoder';
4+
export * from './CborEncoderStable';
5+
export * from './CborEncoderDag';
6+
export * from './CborDecoderBase';
7+
export * from './CborDecoder';
8+
export * from './CborDecoderDag';

src/ion/index.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export * from './types';
2+
export * from './constants';
3+
export * from './Import';
4+
export * from './IonEncoderFast';
5+
export * from './symbols';

src/json/index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export * from './types';
2+
export * from './JsonEncoder';
3+
export * from './JsonEncoderStable';
4+
export * from './JsonEncoderDag';
5+
export * from './JsonDecoder';
6+
export * from './JsonDecoderDag';

src/msgpack/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828
* @module
2929
*/
3030

31+
export * from './types';
3132
export {MsgPackEncoderFast} from './MsgPackEncoderFast';
3233
export {MsgPackEncoder} from './MsgPackEncoder';
3334
export {MsgPackEncoderStable} from './MsgPackEncoderStable';
3435
export {MsgPackDecoderFast} from './MsgPackDecoderFast';
3536
export {MsgPackToJsonConverter} from './MsgPackToJsonConverter';
3637
export {JsonPackValue} from '../JsonPackValue';
3738
export {JsonPackExtension} from '../JsonPackExtension';
38-
export * from './types';

src/ubjson/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from './UbjsonEncoder';
2+
export * from './UbjsonDecoder';

tsconfig.json

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -39,24 +39,14 @@
3939
],
4040
"typedocOptions": {
4141
"entryPoints": [
42-
"src/binary-rx/index.ts",
43-
"src/json-crdt/index.ts",
44-
"src/json-crdt/codec/structural/binary/index.ts",
45-
"src/json-crdt/codec/structural/compact/index.ts",
46-
"src/json-crdt/codec/structural/verbose/index.ts",
47-
"src/json-crdt/codec/indexed/binary/index.ts",
48-
"src/json-crdt/codec/sidecar/binary/index.ts",
49-
"src/json-crdt-patch/codec/verbose/index.ts",
50-
"src/json-crdt-patch/codec/compact/index.ts",
51-
"src/json-crdt-patch/codec/binary/index.ts",
52-
"src/index.ts",
53-
"src/json-patch/index.ts",
54-
"src/json-patch-ot/index.ts",
55-
"src/json-pointer/index.ts",
56-
"src/json-rpc/index.ts",
57-
"src/json-rx/index.ts",
58-
"src/json-type/index.ts",
59-
"src/json-random/index.ts"
42+
"src/cbor/index.ts",
43+
"src/json/index.ts",
44+
"src/msgpack/index.ts",
45+
"src/resp/index.ts",
46+
"src/bencode/index.ts",
47+
"src/ubjson/index.ts",
48+
"src/ion/index.ts",
49+
"src/bson/index.ts"
6050
],
6151
"out": "typedocs"
6252
}

0 commit comments

Comments
 (0)