🎉 initiate project *astro_rewrite*
This commit is contained in:
parent
ffd4d5e86c
commit
2ba37bfbe3
8658 changed files with 2268794 additions and 2538 deletions
33
node_modules/suf-log/dist/interfaces.d.ts
generated
vendored
Normal file
33
node_modules/suf-log/dist/interfaces.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
/**
|
||||
* color/background/font-weight work in node and the browser, the other properties only work in the browser.
|
||||
*/
|
||||
export declare type LogStyle = string | {
|
||||
/**node and browser support */
|
||||
background?: string;
|
||||
/**node and browser support */
|
||||
color?: string;
|
||||
/**browser only */
|
||||
padding?: string;
|
||||
/**browser only */
|
||||
margin?: string;
|
||||
/**browser only, set to inline-block by default. */
|
||||
display?: string;
|
||||
/**browser only */
|
||||
border?: string;
|
||||
/**browser only */
|
||||
'border-radius'?: string;
|
||||
/**browser only */
|
||||
'text-align'?: string;
|
||||
/**browser only */
|
||||
'text-shadow'?: string;
|
||||
/**browser only */
|
||||
'font-size'?: string;
|
||||
/** for bold text in node add the value 'bold' */
|
||||
'font-weight'?: 'bold' | 'normal' | 'bolder' | 'lighter' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900';
|
||||
[key: string]: string | undefined;
|
||||
};
|
||||
export declare type LogMessage = {
|
||||
message: string;
|
||||
style?: LogStyle;
|
||||
};
|
||||
export declare type LogTableInput = (number | string | LogMessage)[][];
|
||||
Loading…
Add table
Add a link
Reference in a new issue