UNPKG

@ng-doc/app

Version:

<!-- PROJECT LOGO --> <br /> <div align="center"> <a href="https://github.com/ng-doc/ng-doc"> <img src="https://ng-doc.com/assets/images/ng-doc.svg?raw=true" alt="Logo" height="150px"> </a>

14 lines (13 loc) 323 B
/** * Interface describing a custom theme for the application */ export interface NgDocTheme { /** * Theme ID that you can use to set theme (e.g. `CustomTheme`) */ id: string; /** * Path that will be used to load theme dynamically (e.g. `/assets/themes/custom.css`) */ path: string; }