Skip to content

Commit

Permalink
Merge pull request #5232 from xenolithviktor/fix-ts-pt-global-css
Browse files Browse the repository at this point in the history
Fix PrimeVuePTOptions.global.css (missing parenthesis)
  • Loading branch information
tugcekucukoglu authored Feb 7, 2024
2 parents be47630 + 4e8852c commit 345dd1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/config/PrimeVue.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ export interface PrimeVuePTOptions {
animate?: AnimateOnScrollDirectivePassThroughOptions;
};
global?: {
css?: (options: any) => string | string | undefined;
css?: ((options: any) => string | undefined) | string | undefined;
};
}

Expand Down

0 comments on commit 345dd1b

Please sign in to comment.