Skip to content

Commit

Permalink
Adds content of helper.ts to module exports
Browse files Browse the repository at this point in the history
  • Loading branch information
pierredge committed May 27, 2024
1 parent 2118941 commit 06e167b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ export interface Asset {
path: string;
content: string;
}
export interface PathBuffer {
export interface PathBuffer {
path: string;
content: Buffer;
}

type AssetOrPathBuffer = Asset | PathBuffer;
export type AssetOrPathBuffer = Asset | PathBuffer;


export interface DocumentInput {
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ export * as FileForge from "./api";
export { FileForgeClient } from "./Client";
export { FileForgeEnvironment } from "./environments";
export { FileForgeError, FileForgeTimeoutError } from "./errors";
export { generate_from_html, Asset, PathBuffer, AssetOrPathBuffer, DocumentInput, ResponseURL, ResponseStream, ResponseObject } from "./helper";

0 comments on commit 06e167b

Please sign in to comment.