Merge pull request #5232 from xenolithviktor/fix-ts-pt-global-css

Fix PrimeVuePTOptions.global.css (missing parenthesis)
pull/5247/head
Tuğçe Küçükoğlu 2024-02-07 15:29:06 +03:00 committed by GitHub
commit 345dd1bd25
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ export interface PrimeVuePTOptions {
animate?: AnimateOnScrollDirectivePassThroughOptions;
};
global?: {
css?: (options: any) => string | string | undefined;
css?: ((options: any) => string | undefined) | string | undefined;
};
}