Remove unnecessary "use strict" directives

This commit is contained in:
hensm
2022-09-02 06:30:19 +01:00
parent d5eb78f881
commit 8ecd3320f7
48 changed files with 0 additions and 97 deletions
@@ -1,5 +1,3 @@
"use strict";
import type { Channel } from "castv2";
import messaging from "../../messaging";
-2
View File
@@ -1,5 +1,3 @@
"use strict";
import { Channel, Client } from "castv2";
import type { ReceiverMessage, SenderMessage } from "./types";
@@ -1,5 +1,3 @@
"use strict";
import mdns from "mdns";
import type { ReceiverDevice } from "../../messagingTypes";
-2
View File
@@ -1,5 +1,3 @@
"use strict";
import messaging, { Message } from "../../messaging";
import Session from "./Session";
-2
View File
@@ -1,5 +1,3 @@
"use strict";
import CastClient from "./client";
import type {
-2
View File
@@ -1,5 +1,3 @@
"use strict";
export interface Image {
url: string;
height: Nullable<number>;
-2
View File
@@ -1,5 +1,3 @@
"use strict";
import fs from "fs";
import http from "http";
import os from "os";
-2
View File
@@ -1,5 +1,3 @@
"use strict";
import messaging, { Message } from "./messaging";
import { handleCastMessage } from "./components/cast";
-2
View File
@@ -1,5 +1,3 @@
"use strict";
import fs from "fs";
/**
-2
View File
@@ -1,5 +1,3 @@
"use strict";
import { TypedEmitter } from "tiny-typed-emitter";
import { DecodeTransform, EncodeTransform } from "../transforms";
-2
View File
@@ -1,5 +1,3 @@
"use strict";
import type {
Image,
ReceiverStatus,
-2
View File
@@ -1,5 +1,3 @@
"use strict";
import http, { IncomingMessage } from "http";
import WebSocket from "ws";
-2
View File
@@ -1,5 +1,3 @@
"use strict";
import yargs from "yargs";
import { applicationName, applicationVersion } from "../config.json";
-2
View File
@@ -1,5 +1,3 @@
"use strict";
import { Transform, TransformCallback } from "stream";
import type { Message } from "./bridge/messaging";