Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions src/channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,21 +110,29 @@ export class Channel<T> {
}

// Global events
static get documents(): string {
static documents(): string {
return "documents";
}

static get rows(): string {
static rows(): string {
return "rows";
}

static get files(): string {
static files(): string {
return "files";
}

static get executions(): string {
static executions(): string {
return "executions";
}

static teams(): string {
return "teams";
}

static memberships(): string {
return "memberships";
}
}

// Export types for backward compatibility with realtime
Expand Down