Comparing version 0.4.8 to 0.4.9
# ChangeLog | ||
## 0.4.9 15 June 2017 | ||
Chore release | ||
## 0.4.8 15 June 2017 | ||
@@ -4,0 +8,0 @@ |
import { DocCollection } from './DocCollection'; | ||
export declare type ProcessorDef = Processor | ((() => Processor) & { | ||
export declare type ProcessorDef = Processor | (((...args: any[]) => Processor) & { | ||
name?: string; | ||
}); | ||
export interface Processor { | ||
$process(docs: DocCollection): DocCollection | void; | ||
$process(docs: DocCollection): DocCollection | PromiseLike<DocCollection> | void; | ||
name?: string; | ||
description?: string; | ||
$runBefore?: string[]; | ||
$runAfter?: string[]; | ||
$enabled?: boolean; | ||
$package?: string; | ||
} |
{ | ||
"name": "dgeni", | ||
"version": "0.4.8", | ||
"version": "0.4.9", | ||
"description": "Flexible JavaScript documentation generator used by both AngularJS and Angular", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
147159
2450