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

PubSub.SubscriptionOptions

import type { PubSub } from "https://raw.githubusercontent.com/i-xi-dev/pubsub.es/2.0.17/mod.ts"; 

const { SubscriptionOptions } = PubSub;

The object with the following optional fields.

type SubscriptionOptions = {
once?: boolean;
signal?: AbortSignal;
}
;

§Type

§
{
once?: boolean;
signal?: AbortSignal;
}
[src]