文件操作 - index.d.mts
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/crossws/dist/index.d.mts
编辑文件内容
import { W as WebSocket } from './shared/crossws.ChIJSJVK.mjs'; interface AdapterInternal { ws: unknown; request: UpgradeRequest; peers?: Set<Peer>; context?: Peer["context"]; } declare abstract class Peer<Internal extends AdapterInternal = AdapterInternal> { #private; protected _internal: Internal; protected _topics: Set<string>; protected _id?: string; constructor(internal: Internal); get context(): Record<string, unknown>; /** * Unique random [uuid v4](https://developer.mozilla.org/en-US/docs/Glossary/UUID) identifier for the peer. */ get id(): string; /** IP address of the peer */ get remoteAddress(): string | undefined; /** upgrade request */ get request(): UpgradeRequest; /** * Get the [WebSocket](https://developer.mozilla.org/en-US/docs/Web/API/WebSocket) instance. * * **Note:** crossws adds polyfill for the following properties if native values are not available: * - `protocol`: Extracted from the `sec-websocket-protocol` header. * - `extensions`: Extracted from the `sec-websocket-extensions` header. * - `url`: Extracted from the request URL (http -> ws). * */ get websocket(): Partial<WebSocket>; /** All connected peers to the server */ get peers(): Set<Peer>; abstract close(code?: number, reason?: string): void; /** Abruptly close the connection */ terminate(): void; /** Subscribe to a topic */ subscribe(topic: string): void; /** Unsubscribe from a topic */ unsubscribe(topic: string): void; /** Send a message to the peer. */ abstract send(data: unknown, options?: { compress?: boolean; }): number | void | undefined; /** Send message to subscribes of topic */ abstract publish(topic: string, data: unknown, options?: { compress?: boolean; }): void; toString(): string; [Symbol.toPrimitive](): string; [Symbol.toStringTag](): string; } interface AdapterInstance { readonly peers: Set<Peer>; readonly publish: Peer["publish"]; } interface AdapterOptions { resolve?: ResolveHooks; hooks?: Partial<Hooks>; } type Adapter<AdapterT extends AdapterInstance = AdapterInstance, Options extends AdapterOptions = AdapterOptions> = (options?: Options) => AdapterT; declare function defineWebSocketAdapter<AdapterT extends AdapterInstance = AdapterInstance, Options extends AdapterOptions = AdapterOptions>(factory: Adapter<AdapterT, Options>): Adapter<AdapterT, Options>; declare class WSError extends Error { constructor(...args: any[]); } declare class Message implements Partial<MessageEvent> { #private; /** Access to the original [message event](https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/message_event) if available. */ readonly event?: MessageEvent; /** Access to the Peer that emitted the message. */ readonly peer?: Peer; /** Raw message data (can be of any type). */ readonly rawData: unknown; constructor(rawData: unknown, peer: Peer, event?: MessageEvent); /** * Unique random [uuid v4](https://developer.mozilla.org/en-US/docs/Glossary/UUID) identifier for the message. */ get id(): string; /** * Get data as [Uint8Array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array) value. * * If raw data is in any other format or string, it will be automatically converted and encoded. */ uint8Array(): Uint8Array<ArrayBufferLike>; /** * Get data as [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer) or [SharedArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer) value. * * If raw data is in any other format or string, it will be automatically converted and encoded. */ arrayBuffer(): ArrayBuffer | SharedArrayBuffer; /** * Get data as [Blob](https://developer.mozilla.org/en-US/docs/Web/API/Blob) value. * * If raw data is in any other format or string, it will be automatically converted and encoded. */ blob(): Blob; /** * Get stringified text version of the message. * * If raw data is in any other format, it will be automatically converted and decoded. */ text(): string; /** * Get parsed version of the message text with [`JSON.parse()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse). */ json<T = unknown>(): T; /** * Message data (value varies based on `peer.websocket.binaryType`). */ get data(): unknown; toString(): string; [Symbol.toPrimitive](): string; } declare function defineHooks<T extends Partial<Hooks> = Partial<Hooks>>(hooks: T): T; type ResolveHooks = (info: RequestInit | Peer) => Partial<Hooks> | Promise<Partial<Hooks>>; type MaybePromise<T> = T | Promise<T>; type UpgradeRequest = Request | { url: string; headers: Headers; }; interface Hooks { /** Upgrading */ /** * * @param request * @throws {Response} */ upgrade: (request: UpgradeRequest & { context: Peer["context"]; }) => MaybePromise<Response | ResponseInit | void>; /** A message is received */ message: (peer: Peer, message: Message) => MaybePromise<void>; /** A socket is opened */ open: (peer: Peer) => MaybePromise<void>; /** A socket is closed */ close: (peer: Peer, details: { code?: number; reason?: string; }) => MaybePromise<void>; /** An error occurs */ error: (peer: Peer, error: WSError) => MaybePromise<void>; } export { type Adapter, type AdapterInstance, type AdapterOptions, type Hooks, Message, Peer, type ResolveHooks, WSError, defineHooks, defineWebSocketAdapter };
修改文件时间
将文件时间修改为当前时间的前一年
删除文件