forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypescript_v5.x.x.js
56 lines (49 loc) · 1.22 KB
/
typescript_v5.x.x.js
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
54
55
56
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
* @format
*/
declare module 'typescript' {
declare enum ModuleResolutionKind {
Classic = 'Classic',
NodeJs = 'NodeJs',
Node10 = 'Node10',
Node16 = 'Node16',
NodeNext = 'NodeNext',
Bundler = 'Bundler',
}
declare type SourceFile = $ReadOnly<{
fileName: string,
text: string,
...
}>;
declare type Diagnostic = $ReadOnly<{
file?: SourceFile,
start?: number,
messageText: string,
...
}>;
declare type EmitResult = $ReadOnly<{
diagnostics: Array<Diagnostic>,
...
}>;
declare type Program = $ReadOnly<{
emit: () => EmitResult,
...
}>;
declare type TypeScriptAPI = {
createProgram(files: Array<string>, compilerOptions: Object): Program,
flattenDiagnosticMessageText: (...messageText: Array<string>) => string,
getLineAndCharacterOfPosition(
file: SourceFile,
start?: number,
): $ReadOnly<{line: number, character: number}>,
ModuleResolutionKind: typeof ModuleResolutionKind,
...
};
declare module.exports: TypeScriptAPI;
}