UNPKG

theme-lib

Version:

This is a simple example Angular Library published to npm.

9 lines (8 loc) 215 B
export interface NbJSThemeOptions { name: string; base?: string; variables?: NbJSThemeVariable; } export interface NbJSThemeVariable { [key: string]: string | string[] | NbJSThemeVariable; }