@raona/sp
Version:
Raona utilities to work with Sharepoint using pnp/sp
10 lines (9 loc) • 386 B
TypeScript
import { ISPLogger } from "./entities/ISPLogger";
import { TypedLogEntry } from "./entities/TypedLogEntry";
export declare class SPFakeLogger implements ISPLogger {
constructor();
preLog<T>(entry: TypedLogEntry<T>): void;
postLog<T>(entry: TypedLogEntry<T>): void;
errorLog<T>(entry: TypedLogEntry<T>): void;
logBetween<T>(entry: TypedLogEntry<T>): void;
}