source: trip-planner-front/node_modules/@angular/cdk/tree/tree-errors.d.ts@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.1 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 error to be thrown when there is no usable data.
10 * @docs-private
11 */
12export declare function getTreeNoValidDataSourceError(): Error;
13/**
14 * Returns an error to be thrown when there are multiple nodes that are missing a when function.
15 * @docs-private
16 */
17export declare function getTreeMultipleDefaultNodeDefsError(): Error;
18/**
19 * Returns an error to be thrown when there are no matching node defs for a particular set of data.
20 * @docs-private
21 */
22export declare function getTreeMissingMatchingNodeDefError(): Error;
23/**
24 * Returns an error to be thrown when there are tree control.
25 * @docs-private
26 */
27export declare function getTreeControlMissingError(): Error;
28/**
29 * Returns an error to be thrown when tree control did not implement functions for flat/nested node.
30 * @docs-private
31 */
32export declare function getTreeControlFunctionsMissingError(): Error;
Note: See TracBrowser for help on using the repository browser.