source: trip-planner-front/node_modules/@angular/cdk/table/table-errors.d.ts@ fa375fe

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

initial commit

  • Property mode set to 100644
File size: 1.7 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 attempting to find an unexisting column.
10 * @param id Id whose lookup failed.
11 * @docs-private
12 */
13export declare function getTableUnknownColumnError(id: string): Error;
14/**
15 * Returns an error to be thrown when two column definitions have the same name.
16 * @docs-private
17 */
18export declare function getTableDuplicateColumnNameError(name: string): Error;
19/**
20 * Returns an error to be thrown when there are multiple rows that are missing a when function.
21 * @docs-private
22 */
23export declare function getTableMultipleDefaultRowDefsError(): Error;
24/**
25 * Returns an error to be thrown when there are no matching row defs for a particular set of data.
26 * @docs-private
27 */
28export declare function getTableMissingMatchingRowDefError(data: any): Error;
29/**
30 * Returns an error to be thrown when there is no row definitions present in the content.
31 * @docs-private
32 */
33export declare function getTableMissingRowDefsError(): Error;
34/**
35 * Returns an error to be thrown when the data source does not match the compatible types.
36 * @docs-private
37 */
38export declare function getTableUnknownDataSourceError(): Error;
39/**
40 * Returns an error to be thrown when the text column cannot find a parent table to inject.
41 * @docs-private
42 */
43export declare function getTableTextColumnMissingParentTableError(): Error;
44/**
45 * Returns an error to be thrown when a table text column doesn't have a name.
46 * @docs-private
47 */
48export declare function getTableTextColumnMissingNameError(): Error;
Note: See TracBrowser for help on using the repository browser.