type$

View as MarkdownOpen in Claude
1get type$(): Observable<ResourceType>

Observable of the resource type (e.g. 'room', 'subscriber').

type

1get type(): ResourceType

Resource type (e.g. 'room', 'subscriber').

Examples

1address.type$.subscribe((type) => {
2 console.log('type:', type);
3});