You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
714 B
20 lines
714 B
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
/**
|
|
* Type describing the allowed values for a number input
|
|
* @docs-private
|
|
*/
|
|
export declare type NumberInput = string | number | null | undefined;
|
|
/** Coerces a data-bound value (typically a string) to a number. */
|
|
export declare function coerceNumberProperty(value: any): number;
|
|
export declare function coerceNumberProperty<D>(value: any, fallback: D): number | D;
|
|
/**
|
|
* Whether the provided value is considered a number.
|
|
* @docs-private
|
|
*/
|
|
export declare function _isNumberValue(value: any): boolean;
|