Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 217 Bytes

data-structures.md

File metadata and controls

10 lines (9 loc) · 217 Bytes

Data Structures

// Read more: https://rxjs.dev/guide/observer
interface Observer<TObservedValue> {
  next: (val: TObservedValue) => void
  error?: (error: Error) => void
  complete?: () => void
}