Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
No EOL
736 B
Text
18 lines
No EOL
736 B
Text
import { Logger } from './Logger';
|
|
import { LoggerOptions } from './LoggerOptions';
|
|
/**
|
|
* A registry for creating named {@link Logger}s.
|
|
*/
|
|
export interface LoggerProvider {
|
|
/**
|
|
* Returns a Logger, creating one if one with the given name, version, and
|
|
* schemaUrl pair is not already created.
|
|
*
|
|
* @param name The name of the logger or instrumentation library.
|
|
* @param version The version of the logger or instrumentation library.
|
|
* @param options The options of the logger or instrumentation library.
|
|
* @returns Logger A Logger with the given name and version
|
|
*/
|
|
getLogger(name: string, version?: string, options?: LoggerOptions): Logger;
|
|
}
|
|
//# sourceMappingURL=LoggerProvider.d.ts.map |