baked-recipe-admin
Version:
Baked is an opinionated framework for .NET in backend and Nuxt in frontend. This is a recipe package that brings together all the components one needs for an Admin UI.
20 lines (17 loc) • 576 B
TypeScript
/**
*
* [Live Demo](https://primevue.org/)
*
* @module basestyle
*
*/
import type { Style, StyleOptions } from '@primevue/core/usestyle';
export enum BaseClasses {}
export declare interface BaseStyle {
name?: string | undefined;
css?: string | undefined;
classes?: object | undefined;
inlineStyles?: object | undefined;
load?: ((style: string | ((params?: any) => string | undefined), options?: StyleOptions) => Style | object | undefined) | undefined;
getStyleSheet?: ((extendedCSS?: string, props?: any) => string | undefined) | undefined;
}