Fix PrimeVuePTOptions.global.css (missing parenthesis)

pull/5232/head
Viktor Gustavsson 2024-02-07 12:46:02 +01:00
parent 2781cae180
commit 4e8852ca71
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;
};
}