extract global.d.ts into its own Typescript project
This commit is contained in:
5
src/extern/global.d.ts
vendored
Normal file
5
src/extern/global.d.ts
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
declare const Qt: Qt;
|
||||
declare const KWin: KWin;
|
||||
declare const Workspace: Workspace;
|
||||
declare const qmlBase: QmlObject;
|
||||
declare const notificationInvalidWindowRules: Notification;
|
||||
@@ -1,4 +1,8 @@
|
||||
{
|
||||
"extends": "../../tsconfig.json",
|
||||
"include": ["../../lib/**/*", "./**/*"]
|
||||
"include": [
|
||||
"../../extern/**/*",
|
||||
"../../lib/**/*",
|
||||
"./**/*"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"extends": "../../../tsconfig.json",
|
||||
"include": [
|
||||
"../../../extern/**/*",
|
||||
"../../../lib/**/*",
|
||||
"../keyBindings.ts",
|
||||
"./**/*"
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"extends": "../../../tsconfig.json",
|
||||
"include": [
|
||||
"../../../extern/**/*",
|
||||
"../../../lib/**/*",
|
||||
"../keyBindings.ts",
|
||||
"./**/*"
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"extends": "../../../tsconfig.json",
|
||||
"include": [
|
||||
"../../../extern/**/*",
|
||||
"../../../lib/**/*",
|
||||
"../keyBindings.ts",
|
||||
"./**/*"
|
||||
|
||||
4
src/lib/extern/global.d.ts
vendored
4
src/lib/extern/global.d.ts
vendored
@@ -1,5 +1 @@
|
||||
declare const console: Console;
|
||||
declare const Qt: Qt;
|
||||
declare const Workspace: Workspace;
|
||||
declare const qmlBase: QmlObject;
|
||||
declare const notificationInvalidWindowRules: Notification;
|
||||
|
||||
1
src/main/global.d.ts
vendored
1
src/main/global.d.ts
vendored
@@ -1 +0,0 @@
|
||||
declare const KWin: KWin;
|
||||
@@ -1,4 +1,8 @@
|
||||
{
|
||||
"extends": "../tsconfig.json",
|
||||
"include": ["../lib/**/*", "./**/*"]
|
||||
"include": [
|
||||
"../extern/**/*",
|
||||
"../lib/**/*",
|
||||
"./**/*"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,4 +1,8 @@
|
||||
{
|
||||
"extends": "../tsconfig.json",
|
||||
"include": ["../lib/**/*", "./**/*"]
|
||||
"include": [
|
||||
"../extern/**/*",
|
||||
"../lib/**/*",
|
||||
"./**/*"
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user