ft_transcendence/pong/node_modules/@nestjs/common/utils/validate-each.util.d.ts
2023-05-02 19:15:50 +02:00

9 lines
327 B
TypeScript

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;