Skip to content

Commit 76e18e1

Browse files
committed
CRLF -> LF
1 parent 92869ac commit 76e18e1

File tree

5 files changed

+600
-599
lines changed

5 files changed

+600
-599
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

ThirdPartyNotices.txt

+42-42
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,42 @@
1-
THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
2-
Do Not Translate or Localize
3-
4-
This project incorporates material from the project(s) listed below (collectively, “Third Party Code”).
5-
Microsoft is not the original author of the Third Party Code. The original copyright notice and license
6-
under which Microsoft received such Third Party Code are set out below. This Third Party Code is licensed
7-
to you under their original license terms set forth below. Microsoft reserves all other rights not
8-
expressly granted, whether by implication, estoppel or otherwise.
9-
10-
The following files/folders contain third party software:
11-
12-
=========================================================================================================
13-
deps/chromium/**
14-
---------------------------------------------------------------------------------------------------------
15-
// Copyright 2015 The Chromium Authors. All rights reserved.
16-
//
17-
// Redistribution and use in source and binary forms, with or without
18-
// modification, are permitted provided that the following conditions are
19-
// met:
20-
//
21-
// * Redistributions of source code must retain the above copyright
22-
// notice, this list of conditions and the following disclaimer.
23-
// * Redistributions in binary form must reproduce the above
24-
// copyright notice, this list of conditions and the following disclaimer
25-
// in the documentation and/or other materials provided with the
26-
// distribution.
27-
// * Neither the name of Google Inc. nor the names of its
28-
// contributors may be used to endorse or promote products derived from
29-
// this software without specific prior written permission.
30-
//
31-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32-
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33-
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
34-
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35-
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
36-
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
37-
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
38-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
39-
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
40-
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
41-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42-
=========================================================================================================
1+
THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
2+
Do Not Translate or Localize
3+
4+
This project incorporates material from the project(s) listed below (collectively, “Third Party Code”).
5+
Microsoft is not the original author of the Third Party Code. The original copyright notice and license
6+
under which Microsoft received such Third Party Code are set out below. This Third Party Code is licensed
7+
to you under their original license terms set forth below. Microsoft reserves all other rights not
8+
expressly granted, whether by implication, estoppel or otherwise.
9+
10+
The following files/folders contain third party software:
11+
12+
=========================================================================================================
13+
deps/chromium/**
14+
---------------------------------------------------------------------------------------------------------
15+
// Copyright 2015 The Chromium Authors. All rights reserved.
16+
//
17+
// Redistribution and use in source and binary forms, with or without
18+
// modification, are permitted provided that the following conditions are
19+
// met:
20+
//
21+
// * Redistributions of source code must retain the above copyright
22+
// notice, this list of conditions and the following disclaimer.
23+
// * Redistributions in binary form must reproduce the above
24+
// copyright notice, this list of conditions and the following disclaimer
25+
// in the documentation and/or other materials provided with the
26+
// distribution.
27+
// * Neither the name of Google Inc. nor the names of its
28+
// contributors may be used to endorse or promote products derived from
29+
// this software without specific prior written permission.
30+
//
31+
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32+
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33+
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
34+
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35+
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
36+
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
37+
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
38+
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
39+
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
40+
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
41+
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42+
=========================================================================================================

index.d.ts

+70-70
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,70 @@
1-
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*--------------------------------------------------------------------------------------------*/
5-
6-
export interface IWindowsKeyMapping {
7-
vkey: string;
8-
value: string;
9-
withShift: string;
10-
withAltGr: string;
11-
withShiftAltGr: string;
12-
}
13-
export interface IWindowsKeyboardMapping {
14-
[code: string]: IWindowsKeyMapping;
15-
}
16-
export interface ILinuxKeyMapping {
17-
value: string;
18-
withShift: string;
19-
withAltGr: string;
20-
withShiftAltGr: string;
21-
}
22-
export interface ILinuxKeyboardMapping {
23-
[code: string]: ILinuxKeyMapping;
24-
}
25-
export interface IMacKeyMapping {
26-
value: string;
27-
valueIsDeadKey: boolean;
28-
withShift: string;
29-
withShiftIsDeadKey: boolean;
30-
withAltGr: string;
31-
withAltGrIsDeadKey: boolean;
32-
withShiftAltGr: string;
33-
withShiftAltGrIsDeadKey: boolean;
34-
}
35-
export interface IMacKeyboardMapping {
36-
[code: string]: IMacKeyMapping;
37-
}
38-
39-
export type IKeyboardMapping = IWindowsKeyboardMapping | ILinuxKeyboardMapping | IMacKeyboardMapping;
40-
41-
export function getKeyMap(): IKeyboardMapping;
42-
43-
export interface IWindowsKeyboardLayoutInfo {
44-
name: string;
45-
id: string;
46-
text: string;
47-
}
48-
49-
export interface ILinuxKeyboardLayoutInfo {
50-
model: string;
51-
group: number;
52-
layout: string;
53-
variant: string;
54-
options: string;
55-
rules: string;
56-
}
57-
58-
export interface IMacKeyboardLayoutInfo {
59-
id: string;
60-
localizedName: string;
61-
lang: string;
62-
}
63-
64-
export type IKeyboardLayoutInfo = IWindowsKeyboardLayoutInfo | ILinuxKeyboardLayoutInfo | IMacKeyboardLayoutInfo;
65-
66-
export function getCurrentKeyboardLayout(): IKeyboardLayoutInfo;
67-
68-
export function onDidChangeKeyboardLayout(callback: () => void): void;
69-
70-
export function isISOKeyboard(): boolean | undefined;
1+
/*---------------------------------------------------------------------------------------------
2+
* Copyright (c) Microsoft Corporation. All rights reserved.
3+
* Licensed under the MIT License. See License.txt in the project root for license information.
4+
*--------------------------------------------------------------------------------------------*/
5+
6+
export interface IWindowsKeyMapping {
7+
vkey: string;
8+
value: string;
9+
withShift: string;
10+
withAltGr: string;
11+
withShiftAltGr: string;
12+
}
13+
export interface IWindowsKeyboardMapping {
14+
[code: string]: IWindowsKeyMapping;
15+
}
16+
export interface ILinuxKeyMapping {
17+
value: string;
18+
withShift: string;
19+
withAltGr: string;
20+
withShiftAltGr: string;
21+
}
22+
export interface ILinuxKeyboardMapping {
23+
[code: string]: ILinuxKeyMapping;
24+
}
25+
export interface IMacKeyMapping {
26+
value: string;
27+
valueIsDeadKey: boolean;
28+
withShift: string;
29+
withShiftIsDeadKey: boolean;
30+
withAltGr: string;
31+
withAltGrIsDeadKey: boolean;
32+
withShiftAltGr: string;
33+
withShiftAltGrIsDeadKey: boolean;
34+
}
35+
export interface IMacKeyboardMapping {
36+
[code: string]: IMacKeyMapping;
37+
}
38+
39+
export type IKeyboardMapping = IWindowsKeyboardMapping | ILinuxKeyboardMapping | IMacKeyboardMapping;
40+
41+
export function getKeyMap(): IKeyboardMapping;
42+
43+
export interface IWindowsKeyboardLayoutInfo {
44+
name: string;
45+
id: string;
46+
text: string;
47+
}
48+
49+
export interface ILinuxKeyboardLayoutInfo {
50+
model: string;
51+
group: number;
52+
layout: string;
53+
variant: string;
54+
options: string;
55+
rules: string;
56+
}
57+
58+
export interface IMacKeyboardLayoutInfo {
59+
id: string;
60+
localizedName: string;
61+
lang: string;
62+
}
63+
64+
export type IKeyboardLayoutInfo = IWindowsKeyboardLayoutInfo | ILinuxKeyboardLayoutInfo | IMacKeyboardLayoutInfo;
65+
66+
export function getCurrentKeyboardLayout(): IKeyboardLayoutInfo;
67+
68+
export function onDidChangeKeyboardLayout(callback: () => void): void;
69+
70+
export function isISOKeyboard(): boolean | undefined;

0 commit comments

Comments
 (0)