mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Merge from vscode 3d67364fbfcf676d93be64f949e9b33e7f1b969e (#5028)
This commit is contained in:
7
src/vs/monaco.d.ts
vendored
7
src/vs/monaco.d.ts
vendored
@@ -171,8 +171,11 @@ declare namespace monaco {
|
||||
* @param skipEncoding Do not encode the result, default is `false`
|
||||
*/
|
||||
toString(skipEncoding?: boolean): string;
|
||||
toJSON(): object;
|
||||
static revive(data: UriComponents | any): Uri;
|
||||
toJSON(): UriComponents;
|
||||
static revive(data: UriComponents | Uri): Uri;
|
||||
static revive(data: UriComponents | Uri | undefined): Uri | undefined;
|
||||
static revive(data: UriComponents | Uri | null): Uri | null;
|
||||
static revive(data: UriComponents | Uri | undefined | null): Uri | undefined | null;
|
||||
}
|
||||
|
||||
export interface UriComponents {
|
||||
|
||||
Reference in New Issue
Block a user