From 4e8852ca717c374a338ab512554b4f38efc5a55d Mon Sep 17 00:00:00 2001 From: Viktor Gustavsson Date: Wed, 7 Feb 2024 12:46:02 +0100 Subject: [PATCH] Fix PrimeVuePTOptions.global.css (missing parenthesis) --- components/lib/config/PrimeVue.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/config/PrimeVue.d.ts b/components/lib/config/PrimeVue.d.ts index 0838a0b33..178295e11 100644 --- a/components/lib/config/PrimeVue.d.ts +++ b/components/lib/config/PrimeVue.d.ts @@ -222,7 +222,7 @@ export interface PrimeVuePTOptions { animate?: AnimateOnScrollDirectivePassThroughOptions; }; global?: { - css?: (options: any) => string | string | undefined; + css?: ((options: any) => string | undefined) | string | undefined; }; }