Skip to content

Commit

Permalink
fix: whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
alanshaw committed Apr 22, 2021
1 parent 4d0e193 commit 9a4b393
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,31 +37,31 @@ export enum PinType {
/**
* Bad type showing up anywhere indicates a bug
*/
BAD = 1,
/**
BAD = 1,
/**
* Data is a regular, non-sharded pin. It is pinned recursively.
* It has no associated reference.
*/
DATA = 2,
DATA = 2,
/**
* Meta tracks the original CID of a sharded DAG. Its Reference points to the
* Cluster DAG CID.
*/
META = 3,
META = 3,
/**
* ClusterDAG pins carry the CID of the root node that points to all the
* shard-root-nodes of the shards in which a DAG has been divided. Its
* Reference carries the MetaType CID.
* ClusterDAGType pins are pinned directly everywhere.
*/
CLUSTER_DAG = 4,
CLUSTER_DAG = 4,
/**
* Shard pins carry the root CID of a shard, which points to individual blocks
* on the original DAG that the user is adding, which has been sharded. They
* carry a Reference to the previous shard. ShardTypes are pinned with
* MaxDepth=1 (root and direct children only).
*/
SHARD = 5
SHARD = 5
}

export type PinResponse = {
Expand Down

0 comments on commit 9a4b393

Please sign in to comment.