Skip to content

Commit

Permalink
Merge upstream (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
PG Herveou authored Feb 5, 2021
1 parent ffdecfb commit 2060627
Show file tree
Hide file tree
Showing 11 changed files with 301 additions and 134 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'CI'
on: [pull_request]
on: [push, pull_request]
jobs:
build:
name: 'Builds and Compiles'
Expand Down
10 changes: 8 additions & 2 deletions monaco.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ declare namespace monaco.languages.typescript {
None = 0,
Preserve = 1,
React = 2,
ReactNative = 3
ReactNative = 3,
ReactJSX = 4,
ReactJSXDev = 5
}
export enum NewLineKind {
CarriageReturnLineFeed = 0,
Expand Down Expand Up @@ -303,7 +305,11 @@ declare namespace monaco.languages.typescript {
* Get signature help items for the item at the given file and position.
* @returns `Promise<typescript.SignatureHelpItems | undefined>`
*/
getSignatureHelpItems(fileName: string, position: number): Promise<any | undefined>;
getSignatureHelpItems(
fileName: string,
position: number,
options: any
): Promise<any | undefined>;
/**
* Get quick info for the item at the given position in the file.
* @returns `Promise<typescript.QuickInfo | undefined>`
Expand Down
Loading

0 comments on commit 2060627

Please sign in to comment.