UNPKG

@raona/sp

Version:

Raona utilities to work with Sharepoint using pnp/sp

8 lines (7 loc) 298 B
import { TypedLogEntry } from "./TypedLogEntry"; export interface ISPLogger { preLog<T = {}>(entry: TypedLogEntry<T>): void; postLog<T = {}>(entry: TypedLogEntry<T>): void; errorLog<T = {}>(entry: TypedLogEntry<T>): void; logBetween<T = {}>(entry: TypedLogEntry<T>): void; }