@ng-doc/core
Advanced tools
Comparing version 16.7.2 to 16.8.0
@@ -14,2 +14,3 @@ export * from './as-array'; | ||
export * from './object-keys'; | ||
export * from './stringify'; | ||
export * from './unique'; |
@@ -17,3 +17,4 @@ "use strict"; | ||
tslib_1.__exportStar(require("./object-keys"), exports); | ||
tslib_1.__exportStar(require("./stringify"), exports); | ||
tslib_1.__exportStar(require("./unique"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -15,2 +15,3 @@ export * from './api'; | ||
export * from './playground-data'; | ||
export * from './playground-options'; | ||
export * from './section-index'; |
@@ -18,3 +18,4 @@ "use strict"; | ||
tslib_1.__exportStar(require("./playground-data"), exports); | ||
tslib_1.__exportStar(require("./playground-options"), exports); | ||
tslib_1.__exportStar(require("./section-index"), exports); | ||
//# sourceMappingURL=index.js.map |
import { Type } from '@angular/core'; | ||
import { NgDocPlaygroundContent } from './playground-content'; | ||
import { NgDocPlaygroundOptions } from './playground-options'; | ||
/** Playground configuration */ | ||
export interface NgDocPlaygroundConfig { | ||
export interface NgDocPlaygroundConfig extends NgDocPlaygroundOptions { | ||
/** Component or directive that will be used for the playground */ | ||
target: Type<unknown> | any; | ||
/** Selectors that should be used to create the current presentation (renders all selectors by default) */ | ||
selectors?: string | string[]; | ||
/** Template that should be used to render playground */ | ||
@@ -17,6 +16,2 @@ template: string; | ||
content?: Record<string, NgDocPlaygroundContent>; | ||
/** | ||
* Custom data that you can use in the templates (e.g. `{{data.providedProperty}}`) | ||
*/ | ||
data?: Record<string, unknown>; | ||
} |
{ | ||
"name": "@ng-doc/core", | ||
"version": "16.7.2", | ||
"version": "16.8.0", | ||
"type": "commonjs", | ||
@@ -5,0 +5,0 @@ "sideEffects": false, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
54002
161
976