Package Exports
- suf-log
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (suf-log) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
suf-log
Docs
interfaces
LogStyle
/**
* color/background/font-weight work in node and the browser, the other properties only work in the browser.
*/
type LogStyle = string | {
background?: string;
color?: string;
padding?: string;
margin?: string;
border?: string;
/** for bold text in node add the value 'bold' */
'font-weight'?: FontWeightProperty;
/** if true the style doesn't get reset in node. */
[key: string]: number | boolean | string | undefined;
}LogMessage
type LogMessage = {
message: string;
style?: LogStyle;
}LogTable
type LogTable = (number | string | LogMessage)[][];loggers
LogS
/**works in node and the browser.*/
function Log(...messages: (string | LogMessage)[]): void;
interface LogTableOptions {
padding?: number;
spacing?: number;
}
/**this function is node only*/
function LogTable(table: LogTable, options?: LogTableOptions): void;
/**works in the browser and node. */
function LogS(styles: LogStyle[], ...messages: string[]): void;LogO
/**Log a single message with an optional style, works in the browser and node. */
function LogO(message: string, style?: LogStyle): void;styler
styler
/**
* this function is not browser compatible*.
* @example ```ts
* console.log(styler('test', 'red'))
* ```
*
* *you have to add the styles manually, use the Log function for browser compatibly.
*/
function styler(input: string, style?: LogStyle): string;Generated with suf-cli
License
Copyright (c) 2020 Leonard Grosoli Licensed under the MIT license.