@ulu/frontend
Version:
A versatile SCSS and JavaScript component library offering configurable, accessible components and flexible integration into any project, with SCSS modules suitable for modern JS frameworks.
24 lines • 835 B
TypeScript
/**
* Changes to make to configuration
* @param {Object} changes
*/
export function set(changes: any): void;
/**
* Proxy Console.log
* @param {Object} context Class instance (optional), will rely on classes (debug) property for output
* @param {...any} messages
*/
export function log(context: any, ...messages: any[]): void;
/**
* Proxy Console.warn
* @param {Object} context Class instance (optional), will rely on classes (debug) property for output
* @param {...any} messages
*/
export function logWarning(context: any, ...messages: any[]): void;
/**
* Proxy Console.error
* @param {Object} context Class instance (optional), will rely on classes (debug) property for output
* @param {...any} messages
*/
export function logError(context: any, ...messages: any[]): void;
//# sourceMappingURL=class-logger.d.ts.map