Skip to content

Commit 426cc8b

Browse files
committed
TEMPORARY dist/ directories for gitpkg
1 parent 3ffbb5b commit 426cc8b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+2426
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,3 @@ build
3939
node_modules
4040

4141
lib
42-
dist
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
export type UnixFS = import('ipfs-unixfs').UnixFS;
2+
export type BlockAPI = import('ipfs-unixfs-importer/src/types').BlockAPI;
3+
export type ExporterOptions = import('./types').ExporterOptions;
4+
export type UnixFSFile = import('./types').UnixFSFile;
5+
export type UnixFSDirectory = import('./types').UnixFSDirectory;
6+
export type ObjectNode = import('./types').ObjectNode;
7+
export type RawNode = import('./types').RawNode;
8+
export type IdentityNode = import('./types').IdentityNode;
9+
export type UnixFSEntry = import('./types').UnixFSEntry;
10+
/**
11+
* @param {string | CID} path
12+
* @param {BlockAPI} blockService
13+
* @param {ExporterOptions} [options]
14+
*/
15+
export function exporter(path: string | CID, blockService: BlockAPI, options?: import("./types").ExporterOptions | undefined): Promise<import("./types").UnixFSEntry>;
16+
/**
17+
* @param {string | CID} path
18+
* @param {BlockAPI} blockService
19+
* @param {ExporterOptions} [options]
20+
*/
21+
export function walkPath(path: string | CID, blockService: BlockAPI, options?: import("./types").ExporterOptions | undefined): AsyncGenerator<import("./types").UnixFSEntry, void, unknown>;
22+
/**
23+
* @param {string | CID} path
24+
* @param {BlockAPI} blockService
25+
* @param {ExporterOptions} [options]
26+
*/
27+
export function recursive(path: string | CID, blockService: BlockAPI, options?: import("./types").ExporterOptions | undefined): AsyncGenerator<import("./types").UnixFSEntry, void, unknown>;
28+
import { CID } from "multiformats/cid";
29+
//# sourceMappingURL=index.d.ts.map

packages/ipfs-unixfs-exporter/dist/src/index.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
export = resolve;
2+
/**
3+
* @typedef {import('../types').Resolver} Resolver
4+
*/
5+
/**
6+
* @type {Resolver}
7+
*/
8+
declare const resolve: Resolver;
9+
declare namespace resolve {
10+
export { Resolver };
11+
}
12+
type Resolver = import('../types').Resolver;
13+
//# sourceMappingURL=dag-cbor.d.ts.map

packages/ipfs-unixfs-exporter/dist/src/resolvers/dag-cbor.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export = resolve;
2+
/**
3+
* @type {Resolver}
4+
*/
5+
declare const resolve: Resolver;
6+
declare namespace resolve {
7+
export { ExporterOptions, Resolver };
8+
}
9+
type Resolver = import('../types').Resolver;
10+
type ExporterOptions = import('../types').ExporterOptions;
11+
//# sourceMappingURL=identity.d.ts.map

packages/ipfs-unixfs-exporter/dist/src/resolvers/identity.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
export = resolve;
2+
/**
3+
* @type {Resolve}
4+
*/
5+
declare function resolve(cid: import("multiformats/cid").CID, name: string, path: string, toResolve: string[], depth: number, blockService: any, options: import("../types").ExporterOptions): Promise<import("../types").ResolveResult>;
6+
declare namespace resolve {
7+
export { BlockAPI, ExporterOptions, UnixFSEntry, Resolver, Resolve };
8+
}
9+
type BlockAPI = import('../').BlockAPI;
10+
type ExporterOptions = import('../types').ExporterOptions;
11+
type UnixFSEntry = import('../types').UnixFSEntry;
12+
type Resolver = import('../types').Resolver;
13+
type Resolve = import('../types').Resolve;
14+
//# sourceMappingURL=index.d.ts.map

packages/ipfs-unixfs-exporter/dist/src/resolvers/index.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
export = resolve;
2+
/**
3+
* @type {import('../types').Resolver}
4+
*/
5+
declare const resolve: import('../types').Resolver;
6+
declare namespace resolve {
7+
export { ExporterOptions };
8+
}
9+
type ExporterOptions = import('../types').ExporterOptions;
10+
//# sourceMappingURL=raw.d.ts.map

0 commit comments

Comments
 (0)