📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-01 06:44:08
📂
/ (Root)
/
home
/
orkouolp
/
nodevenv
/
node_js
/
orkofarms.com
/
18
/
lib
/
node_modules
/
@google-cloud
/
storage
/
build
/
src
📍 /home/orkouolp/nodevenv/node_js/orkofarms.com/18/lib/node_modules/@google-cloud/storage/build/src
🔄 Refresh
✏️
Editing: channel.d.ts
Writable
import { Metadata, ServiceObject } from './nodejs-common'; import { Storage } from './storage'; export interface StopCallback { (err: Error | null, apiResponse?: Metadata): void; } /** * Create a channel object to interact with a Cloud Storage channel. * * See {@link https://cloud.google.com/storage/docs/object-change-notification| Object Change Notification} * * @class * * @param {string} id The ID of the channel. * @param {string} resourceId The resource ID of the channel. * * @example * ``` * const {Storage} = require('@google-cloud/storage'); * const storage = new Storage(); * const channel = storage.channel('id', 'resource-id'); * ``` */ declare class Channel extends ServiceObject { constructor(storage: Storage, id: string, resourceId: string); stop(): Promise<Metadata>; stop(callback: StopCallback): void; } /** * Reference to the {@link Channel} class. * @name module:@google-cloud/storage.Channel * @see Channel */ export { Channel };
💾 Save Changes
❌ Cancel