Skip to content

Commit

Permalink
chore: update api md (#532)
Browse files Browse the repository at this point in the history
  • Loading branch information
gioboa authored Jan 9, 2024
1 parent 2e6a537 commit da4e6f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/integration/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export interface PartytownConfig {
export type PartytownForwardProperty = string;

// @public
export const partytownSnippet: (config?: PartytownConfig | undefined) => string;
export const partytownSnippet: (config?: PartytownConfig) => string;

// @public (undocumented)
export type ResolveUrlType = 'fetch' | 'xhr' | 'script' | 'iframe' | 'image';
Expand Down
4 changes: 2 additions & 2 deletions src/utils/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ export interface LibDirOptions {
export function libDirPath(opts?: LibDirOptions): string;

// @public
export function partytownRollup(opts: PartytownRollupOptions): {
export function partytownRollup(opts?: PartytownRollupOptions): {
name: string;
};

// @public (undocumented)
export interface PartytownRollupOptions {
debug?: boolean;
dest: string;
dest?: string;
}

// @public
Expand Down

1 comment on commit da4e6f6

@vercel
Copy link

@vercel vercel bot commented on da4e6f6 Jan 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.