UNPKG

@furman1331/page-scroller

Version:

Amazing plugin for creating smooth scroll on your website

8 lines 286 B
export type TLoggerType = 'info' | 'error' | 'warn'; export interface ILogger { info(message: string): void; error(message: string): void; warn(message: string): void; createMessage: (message: string, type?: TLoggerType) => string; } //# sourceMappingURL=logger.d.ts.map