@clemdesign/ngx-dropzone
Version:
A highly configurable dropzone component for Angular.
11 lines (10 loc) • 470 B
TypeScript
/**
* Coerces a data-bound value (typically a string) to a boolean.
* Taken from https://github.com/angular/components/blob/master/src/cdk/coercion/boolean-property.ts
*/
export declare function coerceBooleanProperty(value: any): boolean;
/**
* Whether the provided value is considered a number.
* Taken from https://github.com/angular/components/blob/master/src/cdk/coercion/number-property.ts
*/
export declare function coerceNumberProperty(value: any): number;