/var/www/greso.tech/server/nsm/node_modules/@google-cloud/storage/build/src
NameSizeModeActions
nodejs-common/-0755rm
acl.d.ts52290644editdlrm
acl.js265540644editdlrm
bucket.d.ts275340644editdlrm
bucket.js1382000644editdlrm
channel.d.ts9900644editdlrm
channel.js33070644editdlrm
crc32c.d.ts114360644editdlrm
crc32c.js122100644editdlrm
file.d.ts350500644editdlrm
file.js1307040644editdlrm
hash-stream-validator.d.ts15480644editdlrm
hash-stream-validator.js56130644editdlrm
hmacKey.d.ts34390644editdlrm
hmacKey.js132120644editdlrm
iam.d.ts41380644editdlrm
iam.js117630644editdlrm
index.d.ts56540644editdlrm
index.js28750644editdlrm
notification.d.ts38360644editdlrm
notification.js116320644editdlrm
resumable-upload.d.ts90650644editdlrm
resumable-upload.js321300644editdlrm
signer.d.ts31500644editdlrm
signer.js121080644editdlrm
storage.d.ts263100644editdlrm
storage.js452200644editdlrm
transfer-manager.d.ts76510644editdlrm
transfer-manager.js132750644editdlrm
util.d.ts30480644editdlrm
util.js72070644editdlrm
Edit: /var/www/greso.tech/server/nsm/node_modules/@google-cloud/storage/build/src/channel.d.ts (990B)
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; stop(callback: StopCallback): void; } /** * Reference to the {@link Channel} class. * @name module:@google-cloud/storage.Channel * @see Channel */ export { Channel };