@microsoft/windows-admin-center-sdk
Version:
Microsoft - Windows Admin Center Shell
15 lines (14 loc) • 396 B
TypeScript
export declare class Logger {
/**
* the log function.
* @param value the string value to log.
* @param prefix the prefix to log.
*/
static log(value: string, prefix?: string): void;
/**
* the error function.
* @param value the string value to log.
* @param prefix the prefix to log.
*/
static error(value: string, prefix?: string): void;
}