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

View File

@@ -1,5 +1,3 @@
"use strict";
import type { Channel } from "castv2";
import messaging from "../../messaging";

View File

@@ -1,5 +1,3 @@
"use strict";
import { Channel, Client } from "castv2";
import type { ReceiverMessage, SenderMessage } from "./types";

View File

@@ -1,5 +1,3 @@
"use strict";
import mdns from "mdns";
import type { ReceiverDevice } from "../../messagingTypes";

View File

@@ -1,5 +1,3 @@
"use strict";
import messaging, { Message } from "../../messaging";
import Session from "./Session";

View File

@@ -1,5 +1,3 @@
"use strict";
import CastClient from "./client";
import type {

View File

@@ -1,5 +1,3 @@
"use strict";
export interface Image {
url: string;
height: Nullable<number>;

View File

@@ -1,5 +1,3 @@
"use strict";
import fs from "fs";
import http from "http";
import os from "os";

View File

@@ -1,5 +1,3 @@
"use strict";
import messaging, { Message } from "./messaging";
import { handleCastMessage } from "./components/cast";

View File

@@ -1,5 +1,3 @@
"use strict";
import fs from "fs";
/**

View File

@@ -1,5 +1,3 @@
"use strict";
import { TypedEmitter } from "tiny-typed-emitter";
import { DecodeTransform, EncodeTransform } from "../transforms";

View File

@@ -1,5 +1,3 @@
"use strict";
import type {
Image,
ReceiverStatus,

View File

@@ -1,5 +1,3 @@
"use strict";
import http, { IncomingMessage } from "http";
import WebSocket from "ws";

View File

@@ -1,5 +1,3 @@
"use strict";
import yargs from "yargs";
import { applicationName, applicationVersion } from "../config.json";

View File

@@ -1,5 +1,3 @@
"use strict";
import { Transform, TransformCallback } from "stream";
import type { Message } from "./bridge/messaging";