Spaces:
Sleeping
Sleeping
File size: 327 Bytes
cfbbc1a | 1 2 3 4 5 6 7 8 9 | export declare class InvalidDecoratorItemException extends Error {
private readonly msg;
constructor(decorator: string, item: string, context: string);
what(): string;
}
export declare function validateEach(context: {
name: string;
}, arr: any[], predicate: Function, decorator: string, item: string): boolean;
|