Skip to content

Commit

Permalink
tidy up, and update types
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-saland committed Nov 28, 2023
1 parent 1703a35 commit 629b1d7
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
8 changes: 2 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,13 @@ node_modules
build
out
.DS_STORE

how-to/*/package-lock.json

# Bundle/builds
**/*.bundle.js
**/build

# Uploads

**/public/uploads/runtimelogs/*.log
**/public/uploads/applogs/*.zip

./public*/
updatable-packages.txt
updatable-packages.txt
public-github
1 change: 1 addition & 0 deletions how-to/use-logging-apis/client/src/app.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import type OpenFin from "@openfin/core";
import { fin } from "@openfin/core";

let fileName: string;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import type OpenFin from "@openfin/core";
/**
* Launch a dialog.
* @param viewsPreventingUnload The views that are preventing unload.
Expand Down
2 changes: 1 addition & 1 deletion how-to/use-popup-window/advanced/client/src/app.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export {};
import type OpenFin from "@openfin/core";

document.addEventListener("DOMContentLoaded", initDom);

Expand Down
2 changes: 1 addition & 1 deletion how-to/use-popup-window/advanced/client/src/popup.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export {};
import type OpenFin from "@openfin/core";

const me = fin.me as OpenFin.Window;

Expand Down
2 changes: 1 addition & 1 deletion how-to/use-popup-window/modal/client/src/app.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export {};
import type OpenFin from "@openfin/core";

document.addEventListener("DOMContentLoaded", initDom);

Expand Down
2 changes: 1 addition & 1 deletion how-to/use-popup-window/modal/client/src/popup.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export {};
import type OpenFin from "@openfin/core";

const me = fin.me as OpenFin.Window;

Expand Down
2 changes: 1 addition & 1 deletion how-to/use-popup-window/multiple-results/client/src/app.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export {};
import type OpenFin from "@openfin/core";

document.addEventListener("DOMContentLoaded", initDom);

Expand Down
2 changes: 2 additions & 0 deletions how-to/use-popup-window/multiple-results/client/src/popup.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import type OpenFin from "@openfin/core";

const me = fin.me as OpenFin.Window;

document.addEventListener("DOMContentLoaded", initDom);
Expand Down
2 changes: 1 addition & 1 deletion how-to/use-popup-window/single-result/client/src/app.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export {};
import type OpenFin from "@openfin/core";

document.addEventListener("DOMContentLoaded", initDom);

Expand Down
2 changes: 1 addition & 1 deletion how-to/use-popup-window/single-result/client/src/popup.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export {};
import type OpenFin from "@openfin/core";

const me = fin.me as OpenFin.Window;

Expand Down

0 comments on commit 629b1d7

Please sign in to comment.