med-log
Version:
Logging package intended for gxp/samd regulated environments hosted in the cloud
11 lines (10 loc) • 391 B
TypeScript
import { IAzure } from "./IAzure";
import { LogLevel } from '../logLevel';
export declare class AzureSharedKey implements IAzure {
origin: string;
keyToken: string;
container: string;
storageName: string;
constructor(storageName: string, keyToken: string, origin: string, container?: string);
log(logLevel: LogLevel, ...text: string[]): Promise<boolean>;
}