/** * Represents the supported log types * * @internal */ declare enum LogType { /** * Trace level log. Use this for logging diagnostics */ Trace = 1, /** * Event level log. Use this for logging usage etc */ Event = 2, /** * Use for errors */ Error = 3 } export default LogType; //# sourceMappingURL=LogType.d.ts.map