UNPKG

@furman1331/page-scroller

Version:

Amazing plugin for creating smooth scroll on your website

9 lines (7 loc) 234 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 }