Skip to content

Commit b6fd694

Browse files
updated specs
1 parent e59d587 commit b6fd694

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

src/channel.ts

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,21 +110,29 @@ export class Channel<T> {
110110
}
111111

112112
// Global events
113-
static get documents(): string {
113+
static documents(): string {
114114
return "documents";
115115
}
116116

117-
static get rows(): string {
117+
static rows(): string {
118118
return "rows";
119119
}
120120

121-
static get files(): string {
121+
static files(): string {
122122
return "files";
123123
}
124124

125-
static get executions(): string {
125+
static executions(): string {
126126
return "executions";
127127
}
128+
129+
static teams(): string {
130+
return "teams";
131+
}
132+
133+
static memberships(): string {
134+
return "memberships";
135+
}
128136
}
129137

130138
// Export types for backward compatibility with realtime

0 commit comments

Comments
 (0)