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

Mandarine.MandarineCore.IResourceHandler

import type { Mandarine } from "https://raw.githubusercontent.com/mandarineorg/mandarinets/master/main-core/Mandarine.ns.ts"; 

const { IResourceHandler } = Mandarine.MandarineCore;

Handlers the information of a resource handler that will be processed.

interface IResourceHandler {
resourceHandlerIndex: Array<string> | undefined;
resourceHandlerLocations: Array<string> | undefined;
resourceHandlerPath: Array<RegExp> | undefined;
addResourceHandler(...resourceHandlerPath: Array<RegExp>): ResourceHandler;
addResourceHandlerIndex(...resourceHandlerIndex: Array<string>): ResourceHandler;
addResourceHandlerLocation(...resourceHandlerLocations: Array<string>): ResourceHandler;
}

§Properties

§
resourceHandlerIndex: Array<string> | undefined
[src]
§
resourceHandlerLocations: Array<string> | undefined
[src]
§
resourceHandlerPath: Array<RegExp> | undefined
[src]

§Methods

§
addResourceHandler(...resourceHandlerPath: Array<RegExp>): ResourceHandler
[src]
§
addResourceHandlerIndex(...resourceHandlerIndex: Array<string>): ResourceHandler
[src]
§
addResourceHandlerLocation(...resourceHandlerLocations: Array<string>): ResourceHandler
[src]