Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.0 KB
|
Line | |
---|
1 | /**
|
---|
2 | * @license
|
---|
3 | * Copyright Google LLC All Rights Reserved.
|
---|
4 | *
|
---|
5 | * Use of this source code is governed by an MIT-style license that can be
|
---|
6 | * found in the LICENSE file at https://angular.io/license
|
---|
7 | */
|
---|
8 | /**
|
---|
9 | * Returns an exception to be thrown when attempting to change a select's `multiple` option
|
---|
10 | * after initialization.
|
---|
11 | * @docs-private
|
---|
12 | */
|
---|
13 | export declare function getMatSelectDynamicMultipleError(): Error;
|
---|
14 | /**
|
---|
15 | * Returns an exception to be thrown when attempting to assign a non-array value to a select
|
---|
16 | * in `multiple` mode. Note that `undefined` and `null` are still valid values to allow for
|
---|
17 | * resetting the value.
|
---|
18 | * @docs-private
|
---|
19 | */
|
---|
20 | export declare function getMatSelectNonArrayValueError(): Error;
|
---|
21 | /**
|
---|
22 | * Returns an exception to be thrown when assigning a non-function value to the comparator
|
---|
23 | * used to determine if a value corresponds to an option. Note that whether the function
|
---|
24 | * actually takes two values and returns a boolean is not checked.
|
---|
25 | */
|
---|
26 | export declare function getMatSelectNonFunctionValueError(): Error;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.