Skip to content

Commit 06e167b

Browse files
committed
Adds content of helper.ts to module exports
1 parent 2118941 commit 06e167b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/helper.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ export interface Asset {
1414
path: string;
1515
content: string;
1616
}
17-
export interface PathBuffer {
17+
export interface PathBuffer {
1818
path: string;
1919
content: Buffer;
2020
}
2121

22-
type AssetOrPathBuffer = Asset | PathBuffer;
22+
export type AssetOrPathBuffer = Asset | PathBuffer;
2323

2424

2525
export interface DocumentInput {

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ export * as FileForge from "./api";
22
export { FileForgeClient } from "./Client";
33
export { FileForgeEnvironment } from "./environments";
44
export { FileForgeError, FileForgeTimeoutError } from "./errors";
5+
export { generate_from_html, Asset, PathBuffer, AssetOrPathBuffer, DocumentInput, ResponseURL, ResponseStream, ResponseObject } from "./helper";

0 commit comments

Comments
 (0)