@studiohyperdrive/ngx-utils
Version:
A series of abstracts, utils, pipes and services for Angular applications.
14 lines (13 loc) • 547 B
TypeScript
import { PipeTransform } from '@angular/core';
import * as i0 from "@angular/core";
export declare class IsNotEmptyPipe implements PipeTransform {
/**
* Checks if a given argument is an object or array and if it is empty.
*
* @param value - can be any value.
* @param checkProps - which props to check.
*/
transform(value: unknown, checkProps?: string[]): boolean;
static ɵfac: i0.ɵɵFactoryDeclaration<IsNotEmptyPipe, never>;
static ɵpipe: i0.ɵɵPipeDeclaration<IsNotEmptyPipe, "isNotEmpty", true>;
}