@types/guacamole-common-js
Advanced tools
Comparing version 1.3.2 to 1.3.3
@@ -12,34 +12,34 @@ // Type definitions for guacamole-common-js 1.3 | ||
export * from './lib/Object'; | ||
export * from './lib/BlobReader'; | ||
export * from './lib/BlobWriter'; | ||
export * from './lib/Tunnel'; | ||
export * from './lib/ArrayBufferReader'; | ||
export * from './lib/ArrayBufferWriter'; | ||
export * from './lib/InputStream'; | ||
export * from './lib/AudioPlayer'; | ||
export * from './lib/DataURIReader'; | ||
export * from './lib/WebSocketTunnel'; | ||
export * from './lib/StaticHTTPTunnel'; | ||
export * from './lib/HTTPTunnel'; | ||
export * from './lib/ChainedTunnel'; | ||
export * from './lib/Layer'; | ||
export * from './lib/VisibleLayer'; | ||
export * from './lib/JSONReader'; | ||
export * from './lib/Status'; | ||
export * from './lib/Display'; | ||
export * from './lib/Client'; | ||
export * from './lib/Keyboard'; | ||
export * from './lib/Mouse'; | ||
export * from './lib/Parser'; | ||
export * from './lib/InputSink'; | ||
export * from './lib/OnScreenKeyboard'; | ||
export * from './lib/AudioRecorder'; | ||
export * from './lib/RawAudioRecorder'; | ||
export * from './lib/RawAudioFormat'; | ||
export * from './lib/RawAudioPlayer'; | ||
export * from './lib/StringReader'; | ||
export * from './lib/StringWriter'; | ||
export * from './lib/IntegerPool'; | ||
export * from './lib/OutputStream'; | ||
export * from './lib/VideoPlayer'; | ||
export * from "./lib/ArrayBufferReader"; | ||
export * from "./lib/ArrayBufferWriter"; | ||
export * from "./lib/AudioPlayer"; | ||
export * from "./lib/AudioRecorder"; | ||
export * from "./lib/BlobReader"; | ||
export * from "./lib/BlobWriter"; | ||
export * from "./lib/ChainedTunnel"; | ||
export * from "./lib/Client"; | ||
export * from "./lib/DataURIReader"; | ||
export * from "./lib/Display"; | ||
export * from "./lib/HTTPTunnel"; | ||
export * from "./lib/InputSink"; | ||
export * from "./lib/InputStream"; | ||
export * from "./lib/IntegerPool"; | ||
export * from "./lib/JSONReader"; | ||
export * from "./lib/Keyboard"; | ||
export * from "./lib/Layer"; | ||
export * from "./lib/Mouse"; | ||
export * from "./lib/Object"; | ||
export * from "./lib/OnScreenKeyboard"; | ||
export * from "./lib/OutputStream"; | ||
export * from "./lib/Parser"; | ||
export * from "./lib/RawAudioFormat"; | ||
export * from "./lib/RawAudioPlayer"; | ||
export * from "./lib/RawAudioRecorder"; | ||
export * from "./lib/StaticHTTPTunnel"; | ||
export * from "./lib/Status"; | ||
export * from "./lib/StringReader"; | ||
export * from "./lib/StringWriter"; | ||
export * from "./lib/Tunnel"; | ||
export * from "./lib/VideoPlayer"; | ||
export * from "./lib/VisibleLayer"; | ||
export * from "./lib/WebSocketTunnel"; |
@@ -1,2 +0,2 @@ | ||
import { InputStream } from './InputStream.d'; | ||
import { InputStream } from "./InputStream.d"; | ||
@@ -3,0 +3,0 @@ /** |
@@ -1,4 +0,4 @@ | ||
import { TypedArray } from './GuacCommon.d'; | ||
import { OutputStream } from './OutputStream'; | ||
import { Status } from './Status'; | ||
import { TypedArray } from "./GuacCommon.d"; | ||
import { OutputStream } from "./OutputStream"; | ||
import { Status } from "./Status"; | ||
@@ -28,3 +28,2 @@ /** | ||
* should only be increased with extreme caution. | ||
* | ||
*/ | ||
@@ -31,0 +30,0 @@ blobLength: number; |
@@ -1,3 +0,3 @@ | ||
import { Mimetype } from './GuacCommon'; | ||
import { InputStream } from './InputStream'; | ||
import { Mimetype } from "./GuacCommon"; | ||
import { InputStream } from "./InputStream"; | ||
@@ -4,0 +4,0 @@ /** |
@@ -1,3 +0,3 @@ | ||
import { Mimetype } from './GuacCommon.d'; | ||
import { OutputStream } from './OutputStream'; | ||
import { Mimetype } from "./GuacCommon.d"; | ||
import { OutputStream } from "./OutputStream"; | ||
@@ -4,0 +4,0 @@ /** |
@@ -1,3 +0,3 @@ | ||
import { Mimetype } from './GuacCommon'; | ||
import { InputStream } from './InputStream'; | ||
import { Mimetype } from "./GuacCommon"; | ||
import { InputStream } from "./InputStream"; | ||
@@ -4,0 +4,0 @@ /** |
@@ -1,3 +0,3 @@ | ||
import { OutputStream } from './OutputStream'; | ||
import { Status } from './Status'; | ||
import { OutputStream } from "./OutputStream"; | ||
import { Status } from "./Status"; | ||
/** | ||
@@ -4,0 +4,0 @@ * A writer which automatically writes to the given output stream with the |
@@ -1,2 +0,2 @@ | ||
import { Tunnel } from './Tunnel'; | ||
import { Tunnel } from "./Tunnel"; | ||
@@ -3,0 +3,0 @@ /** |
@@ -1,12 +0,12 @@ | ||
import { Mimetype } from './GuacCommon'; | ||
import { Tunnel } from './Tunnel'; | ||
import { OutputStream } from './OutputStream'; | ||
import { InputStream } from './InputStream'; | ||
import { Status } from './Status'; | ||
import { Display } from './Display'; | ||
import { AudioPlayer } from './AudioPlayer'; | ||
import { VideoPlayer } from './VideoPlayer'; | ||
import { VisibleLayer } from './VisibleLayer'; | ||
import { Mouse } from './Mouse'; | ||
import * as Guacamole from './Object'; | ||
import { AudioPlayer } from "./AudioPlayer"; | ||
import { Display } from "./Display"; | ||
import { Mimetype } from "./GuacCommon"; | ||
import { InputStream } from "./InputStream"; | ||
import { Mouse } from "./Mouse"; | ||
import * as Guacamole from "./Object"; | ||
import { OutputStream } from "./OutputStream"; | ||
import { Status } from "./Status"; | ||
import { Tunnel } from "./Tunnel"; | ||
import { VideoPlayer } from "./VideoPlayer"; | ||
import { VisibleLayer } from "./VisibleLayer"; | ||
@@ -34,9 +34,9 @@ export {}; | ||
| (ExportLayerBase & { | ||
x: number; | ||
y: number; | ||
z: number; | ||
alpha: number; | ||
matrix: unknown; | ||
parent: unknown; | ||
}); | ||
x: number; | ||
y: number; | ||
z: number; | ||
alpha: number; | ||
matrix: unknown; | ||
parent: unknown; | ||
}); | ||
@@ -43,0 +43,0 @@ export interface ExportedState { |
@@ -1,2 +0,2 @@ | ||
import { InputStream } from './InputStream'; | ||
import { InputStream } from "./InputStream"; | ||
/** | ||
@@ -3,0 +3,0 @@ * A reader which automatically handles the given input stream, returning |
@@ -1,4 +0,4 @@ | ||
import { Layer } from './Layer'; | ||
import { VisibleLayer } from './VisibleLayer'; | ||
import { Mimetype } from './GuacCommon.d'; | ||
import { Mimetype } from "./GuacCommon.d"; | ||
import { Layer } from "./Layer"; | ||
import { VisibleLayer } from "./VisibleLayer"; | ||
@@ -5,0 +5,0 @@ export {}; |
@@ -1,2 +0,2 @@ | ||
import { Tunnel } from './Tunnel'; | ||
import { Tunnel } from "./Tunnel"; | ||
@@ -3,0 +3,0 @@ /** |
@@ -1,3 +0,3 @@ | ||
import { Client } from './Client.d'; | ||
import { Status } from './Status.d'; | ||
import { Client } from "./Client.d"; | ||
import { Status } from "./Status.d"; | ||
@@ -4,0 +4,0 @@ /** |
@@ -1,2 +0,2 @@ | ||
import { InputStream } from './InputStream'; | ||
import { InputStream } from "./InputStream"; | ||
@@ -3,0 +3,0 @@ /** |
export namespace Layer { | ||
export {}; | ||
export type LineCap = 'round' | 'square' | 'butt'; | ||
export type LineJoin = 'round' | 'bevel' | 'mitter'; | ||
export type LineCap = "round" | "square" | "butt"; | ||
export type LineJoin = "round" | "bevel" | "mitter"; | ||
@@ -269,3 +269,3 @@ /** | ||
*/ | ||
curveTo: CanvasRenderingContext2D['bezierCurveTo']; | ||
curveTo: CanvasRenderingContext2D["bezierCurveTo"]; | ||
@@ -279,3 +279,3 @@ /** | ||
*/ | ||
rect: CanvasRenderingContext2D['rect']; | ||
rect: CanvasRenderingContext2D["rect"]; | ||
@@ -287,3 +287,3 @@ /** | ||
*/ | ||
moveTo: CanvasRenderingContext2D['moveTo']; | ||
moveTo: CanvasRenderingContext2D["moveTo"]; | ||
@@ -295,3 +295,3 @@ /** | ||
*/ | ||
lineTo: CanvasRenderingContext2D['lineTo']; | ||
lineTo: CanvasRenderingContext2D["lineTo"]; | ||
@@ -310,3 +310,3 @@ /** | ||
*/ | ||
arc: CanvasRenderingContext2D['arc']; | ||
arc: CanvasRenderingContext2D["arc"]; | ||
@@ -317,3 +317,3 @@ /** | ||
*/ | ||
close: CanvasRenderingContext2D['closePath']; | ||
close: CanvasRenderingContext2D["closePath"]; | ||
@@ -326,3 +326,3 @@ /** | ||
*/ | ||
clip: CanvasRenderingContext2D['clip']; | ||
clip: CanvasRenderingContext2D["clip"]; | ||
@@ -329,0 +329,0 @@ /** |
@@ -1,5 +0,5 @@ | ||
import { Mimetype } from './GuacCommon'; | ||
import { OutputStream } from './OutputStream'; | ||
import { InputStream } from './InputStream'; | ||
import { Client } from './Client'; | ||
import { Client } from "./Client"; | ||
import { Mimetype } from "./GuacCommon"; | ||
import { InputStream } from "./InputStream"; | ||
import { OutputStream } from "./OutputStream"; | ||
@@ -6,0 +6,0 @@ /** |
@@ -1,3 +0,3 @@ | ||
import { Status } from './Status'; | ||
import { Client } from './Client'; | ||
import { Client } from "./Client"; | ||
import { Status } from "./Status"; | ||
@@ -4,0 +4,0 @@ /** |
@@ -1,2 +0,2 @@ | ||
import { Mimetype } from './GuacCommon.d'; | ||
import { Mimetype } from "./GuacCommon.d"; | ||
@@ -37,3 +37,2 @@ /** | ||
* The number of audio channels (ie: 1 for mono, 2 for stereo). | ||
* | ||
*/ | ||
@@ -40,0 +39,0 @@ channels: number; |
@@ -1,4 +0,4 @@ | ||
import { Mimetype } from './GuacCommon.d'; | ||
import { AudioPlayer } from './AudioPlayer.d'; | ||
import { InputStream } from './InputStream.d'; | ||
import { AudioPlayer } from "./AudioPlayer.d"; | ||
import { Mimetype } from "./GuacCommon.d"; | ||
import { InputStream } from "./InputStream.d"; | ||
@@ -5,0 +5,0 @@ export {}; |
@@ -1,4 +0,4 @@ | ||
import { Mimetype } from './GuacCommon.d'; | ||
import { AudioRecorder } from './AudioRecorder.d'; | ||
import { OutputStream } from './OutputStream.d'; | ||
import { AudioRecorder } from "./AudioRecorder.d"; | ||
import { Mimetype } from "./GuacCommon.d"; | ||
import { OutputStream } from "./OutputStream.d"; | ||
@@ -11,3 +11,3 @@ /** | ||
export class RawAudioRecorder extends AudioRecorder { | ||
static isSupportedType: typeof AudioRecorder['isSupportedType']; | ||
static isSupportedType: typeof AudioRecorder["isSupportedType"]; | ||
@@ -14,0 +14,0 @@ /** |
@@ -1,2 +0,2 @@ | ||
import { Tunnel } from './Tunnel'; | ||
import { Tunnel } from "./Tunnel"; | ||
@@ -3,0 +3,0 @@ /** |
@@ -102,4 +102,5 @@ export {}; | ||
export type Code = StatusCode[keyof StatusCode]; | ||
export const Code: StatusCode & | ||
Readonly<{ | ||
export const Code: | ||
& StatusCode | ||
& Readonly<{ | ||
/** | ||
@@ -106,0 +107,0 @@ * Returns the Guacamole protocol status code which most closely |
@@ -1,2 +0,2 @@ | ||
import { InputStream } from './InputStream'; | ||
import { InputStream } from "./InputStream"; | ||
@@ -3,0 +3,0 @@ /** |
@@ -1,3 +0,3 @@ | ||
import { Status } from './Status'; | ||
import { OutputStream } from './OutputStream'; | ||
import { OutputStream } from "./OutputStream"; | ||
import { Status } from "./Status"; | ||
@@ -4,0 +4,0 @@ /** |
@@ -1,2 +0,2 @@ | ||
import { Status } from './Status'; | ||
import { Status } from "./Status"; | ||
export {}; | ||
@@ -38,3 +38,3 @@ | ||
export abstract class Tunnel { | ||
static readonly INTERNAL_DATA_OPCODE: ''; | ||
static readonly INTERNAL_DATA_OPCODE: ""; | ||
/** | ||
@@ -41,0 +41,0 @@ * The maximum amount of time to wait for data to be received, in |
@@ -1,4 +0,4 @@ | ||
import { InputStream } from './InputStream'; | ||
import { Mimetype } from './GuacCommon'; | ||
import { VisibleLayer } from './VisibleLayer'; | ||
import { Mimetype } from "./GuacCommon"; | ||
import { InputStream } from "./InputStream"; | ||
import { VisibleLayer } from "./VisibleLayer"; | ||
@@ -5,0 +5,0 @@ /** |
@@ -1,2 +0,2 @@ | ||
import { Layer } from './Layer'; | ||
import { Layer } from "./Layer"; | ||
@@ -3,0 +3,0 @@ export {}; |
@@ -1,2 +0,2 @@ | ||
import { Tunnel } from './Tunnel'; | ||
import { Tunnel } from "./Tunnel"; | ||
@@ -3,0 +3,0 @@ /** |
{ | ||
"name": "@types/guacamole-common-js", | ||
"version": "1.3.2", | ||
"version": "1.3.3", | ||
"description": "TypeScript definitions for guacamole-common-js", | ||
@@ -43,4 +43,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/guacamole-common-js", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "b201ebe44b0a622b6d69042999117118f981598ef758a9c166eff684a5b2f1e7", | ||
"typeScriptVersion": "4.1" | ||
"typesPublisherContentHash": "584b58ce309b12c964a93bf98e76874e4b2b54b32525ea994ed6ff55eec2d28b", | ||
"typeScriptVersion": "4.5" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Tue, 04 Oct 2022 10:03:07 GMT | ||
* Last updated: Wed, 20 Sep 2023 17:08:03 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: none |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
120902
2871