Skip to content

Commit

Permalink
chore: make diff less noisy
Browse files Browse the repository at this point in the history
License: MIT
Signed-off-by: Oli Evans <oli@protocol.ai>
  • Loading branch information
olizilla committed Oct 17, 2023
1 parent 5eb25f3 commit a47a118
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/upload-api/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ export interface DudewhereBucket {
export interface StoreTable {
inspect: (link: UnknownLink) => Promise<StoreInspectOk>
exists: (space: DID, link: UnknownLink) => Promise<boolean>
get: (space: DID,link: UnknownLink) => Promise<(StoreListItem) | undefined>
get: (space: DID,link: UnknownLink) => Promise<StoreGetSuccess | undefined>
insert: (item: StoreAddInput) => Promise<StoreAddOutput>
remove: (space: DID, link: UnknownLink) => Promise<void>
list: (
Expand All @@ -392,7 +392,7 @@ export interface StoreTable {
export interface UploadTable {
inspect: (link: UnknownLink) => Promise<UploadInspectOk>
exists: (space: DID, root: UnknownLink) => Promise<boolean>
get: (space: DID,link: UnknownLink) => Promise<(UploadListItem) | undefined>
get: (space: DID,link: UnknownLink) => Promise<UploadGetSuccess | undefined>
insert: (item: UploadAddInput) => Promise<UploadAddSuccess>
remove: (space: DID, root: UnknownLink) => Promise<UploadRemoveSuccess | null>
list: (
Expand Down

0 comments on commit a47a118

Please sign in to comment.