@treecg/curation
Version:
This library implements a class (Curator) with methods to curate an announcement LDES in LDP.
16 lines (15 loc) • 385 B
TypeScript
export declare class Logger {
private readonly logger;
constructor(loggable: Instance | string, level?: string | undefined);
error(message: string): void;
warn(message: string): void;
info(message: string): void;
debug(message: string): void;
trace(message: string): void;
}
interface Instance {
constructor: {
name: string;
};
}
export {};