20 lines
562 B
TypeScript
20 lines
562 B
TypeScript
/**
|
|
*
|
|
* [Live Demo](https://primevue.org/)
|
|
*
|
|
* @module basestyle
|
|
*
|
|
*/
|
|
import { Style, StyleOptions } from '../../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;
|
|
}
|