Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
chore: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Aug 17, 2022
1 parent 39dbf70 commit 8f351a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/ipfs-core-types/src/root.ts
Expand Up @@ -260,7 +260,7 @@ export interface CatOptions extends AbortOptions, PreloadOptions {
export interface GetOptions extends AbortOptions, PreloadOptions {
archive?: boolean
compress?: boolean
compressionLevel?: -1 | 0 | 1 | 2 | 3 | 4 | 5 | 6| 7 | 8| 9
compressionLevel?: -1 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9
}

export interface ListOptions extends AbortOptions, PreloadOptions {
Expand Down
4 changes: 2 additions & 2 deletions packages/ipfs-core-types/src/utils.ts
@@ -1,7 +1,7 @@
import type { CID } from 'multiformats/cid'
import type { Mtime, MtimeLike } from 'ipfs-unixfs'

export type Entry<Content extends AsyncIterable<Uint8Array>|Blob> =
export type Entry<Content extends AsyncIterable<Uint8Array> | Blob> =
| FileEntry<Content>
| DirectoryEntry

Expand All @@ -10,7 +10,7 @@ export interface BaseEntry {
mode?: number
mtime?: Mtime
}
export interface FileEntry <Content extends AsyncIterable<Uint8Array>|Blob> extends BaseEntry {
export interface FileEntry <Content extends AsyncIterable<Uint8Array> | Blob> extends BaseEntry {
content?: Content
}

Expand Down

0 comments on commit 8f351a8

Please sign in to comment.