ng-packagr
Version:
Compile and package Angular libraries in Angular Package Format (APF)
11 lines (10 loc) • 517 B
TypeScript
import { Node } from './node';
export declare function and(...criteria: ((node: Node) => boolean)[]): (node: Node) => boolean;
export declare function by(criteria: (node: Node) => boolean): {
(node: Node): boolean;
and: (criteria: (node: Node) => boolean) => (node: Node) => boolean;
};
export declare function isInProgress(node: Node): boolean;
export declare function isPending(node: Node): boolean;
export declare function isDirty(node: Node): boolean;
export declare function isDone(node: Node): boolean;