-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathapi.d.ts
53 lines (46 loc) · 1.42 KB
/
api.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
* Build a message from given template and arguments.
* For example:
* We call to this function with template 'Hello {0}` and the argument 'World'.
* The result will be 'Hello World'.
*/
export function buildMessage(template: string, ...params: string[]): string;
type validationText = {
msg: string;
code: number;
};
type commandText = {
name: string;
title: string;
};
type Validations = {
INVALID_AGGREGATION_CARDINALITY: validationText;
INVALID_AGGREGATION_TYPE: validationText;
NON_STABLE_ID: validationText;
NON_UNIQUE_ID: validationText;
NON_UNIQUE_ID_RELATED_INFO: validationText;
UNKNOWN_AGGREGATION_IN_CLASS: validationText;
UNKNOWN_AGGREGATION_IN_CLASS_DIFF_NAMESPACE: validationText;
UNKNOWN_CLASS_IN_NS: validationText;
UNKNOWN_CLASS_WITHOUT_NS: validationText;
UNKNOWN_TAG_NAME_IN_CLASS: validationText;
UNKNOWN_TAG_NAME_IN_NS: validationText;
UNKNOWN_TAG_NAME_IN_NS_UNDER_CLASS: validationText;
UNKNOWN_TAG_NAME_NO_NS: validationText;
};
type Commands = {
QUICK_FIX_STABLE_ID_ERROR: commandText;
QUICK_FIX_STABLE_ID_FILE_ERRORS: commandText;
};
/**
* Templates and error codes for LSP Diagnostics issues.
*/
export declare const validations: Validations;
/**
* Command names and titles for LSP Commands.
*/
export declare const commands: Commands;
/**
* Used for LSP Diagnostic issue to describe the source of the diagnostic.
*/
export declare const DIAGNOSTIC_SOURCE: string;