yandex-cloud-functions-router
Version:
Node router for Yandex Cloud Functions
8 lines (7 loc) • 327 B
TypeScript
declare const log: (level: 'INFO' | 'WARN' | 'ERROR', requestId: string, message: string, params: {
[name: string]: string | number | boolean | object;
}) => void;
declare const debug: (requestId: string, message: string, params: {
[name: string]: string | number | boolean | object;
}) => void;
export { log, debug };