Skip to content

Commit

Permalink
Merge branch 'main' into ci/pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
gioboa committed Jan 15, 2024
2 parents d1abf8c + 13f5259 commit c5e2a56
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

0 comments on commit c5e2a56

Please sign in to comment.