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

Extractor

interface Extractor {
name: string;
order?: number;
extract?(ctx: ExtractorContext): Awaitable<Set<string> | string[] | undefined | void>;
}

§Properties

§
name: string
[src]
§
order?: number
[src]

§Methods

§
extract?(ctx: ExtractorContext): Awaitable<Set<string> | string[] | undefined | void>
[src]

Extract the code and return a list of selectors.

Return undefined to skip this extractor.