ydb-sdk
Version:
Node.js bindings for working with YDB API over gRPC
9 lines • 316 B
TypeScript
import { Logger } from "./simple-logger";
/**
* The interface grants that the object has a logger property. It is necessary that decorators can get
* the logger of the object whose method they are decorating.
*/
export interface HasLogger {
readonly logger: Logger;
}
//# sourceMappingURL=has-logger.d.ts.map