Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

NotificationKind

deprecated
@deprecated

Use a string literal instead. NotificationKind will be replaced with a type alias in v8. It will not be replaced with a const enum as those are not compatible with isolated modules.

enum NotificationKind {
NEXT = "N",
ERROR = "E",
COMPLETE = "C",
}

§Members

§
NotificationKind.COMPLETE = "C"
[src]
§
NotificationKind.ERROR = "E"
[src]