This commit is contained in:
CHEVALLIER Abel
2025-11-13 16:23:22 +01:00
parent de9c515a47
commit cb235644dc
34924 changed files with 3811102 additions and 0 deletions

16
node_modules/@angular/cdk/number-property.d.d.ts generated vendored Executable file
View File

@@ -0,0 +1,16 @@
/**
* Type describing the allowed values for a number input
* @docs-private
*/
type NumberInput = string | number | null | undefined;
/** Coerces a data-bound value (typically a string) to a number. */
declare function coerceNumberProperty(value: any): number;
declare function coerceNumberProperty<D>(value: any, fallback: D): number | D;
/**
* Whether the provided value is considered a number.
* @docs-private
*/
declare function _isNumberValue(value: any): boolean;
export { _isNumberValue, coerceNumberProperty };
export type { NumberInput };