easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
16 lines (15 loc) • 579 B
TypeScript
import { ITheme } from './ITheme';
type ThemeDictionary = {
[key: string]: ITheme;
};
export declare const Themes: ThemeDictionary;
export declare function GetLineNumberStyle(theme: string): string;
export declare function GetBackgroundStyle(theme: string): string;
/**
* Returns a CSS style string for code references
* @param theme Defined theme we're getting the style for
* @param styleName Style name of the code snippet (ex: Keyword vs Punctuation)
* @returns string
*/
export declare function GetGenericStyle(theme: string, styleName: string): string;
export {};