Skip to content

Commit

Permalink
fix(html): template function first arg is always provided (#1718)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthieusieben authored Sep 22, 2024
1 parent 6d4bb6b commit d9141bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/html/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export interface RollupHtmlOptions {
fileName?: string;
meta?: Record<string, any>[];
publicPath?: string;
template?: (templateoptions?: RollupHtmlTemplateOptions) => string;
template?: (templateoptions: RollupHtmlTemplateOptions) => string;
}

export function makeHtmlAttributes(attributes: Record<string, string>): string;
Expand Down

0 comments on commit d9141bf

Please sign in to comment.