From f3d576539b946916d606f2e7e3b6ea90a1e25a87 Mon Sep 17 00:00:00 2001 From: Nikola Hristov Date: Tue, 2 Jan 2024 21:30:38 +0200 Subject: [PATCH] squash! --- Documentation/Class/Theme.Theme.html | 36 +++++++++---------- Documentation/Function/Build.Merge.html | 4 +-- Documentation/Function/Merge.Merge.html | 4 +-- .../Interface/Interface_Merge.Type.html | 4 +-- .../Interface/Interface_Theme.Type.html | 28 +++++++-------- Documentation/Module/Build.html | 2 +- Documentation/Module/Exec.html | 2 +- Documentation/Module/File.html | 2 +- Documentation/Module/JSON.html | 2 +- Documentation/assets/search.js | 2 +- 10 files changed, 43 insertions(+), 43 deletions(-) diff --git a/Documentation/Class/Theme.Theme.html b/Documentation/Class/Theme.Theme.html index 78a984e8..b6c3838f 100644 --- a/Documentation/Class/Theme.Theme.html +++ b/Documentation/Class/Theme.Theme.html @@ -31,47 +31,47 @@ getUrl

Constructors

  • Create a new DefaultTheme instance.

    Parameters

    • renderer: Renderer

      The renderer this theme is attached to.

      -

    Returns theme

Properties

Mapping: Type[] = ...

An array of Mappings representing the theme's mapping configuration.

+

Returns theme

Properties

Mapping: Type[] = ...

An array of Mappings representing the theme's mapping configuration.

componentName: string

The name of this component as set by the @Component decorator.

-
defaultLayoutTemplate: ((pageEvent, template) => JsxElement)

Type declaration

    • (pageEvent, template): JsxElement
    • Parameters

      • pageEvent: PageEvent<Reflection>
      • template: RenderTemplate<PageEvent<Reflection>>

      Returns JsxElement

hierarchyTemplate: ((pageEvent) => JsxElement)

Type declaration

    • (pageEvent): JsxElement
    • Parameters

      • pageEvent: PageEvent<ProjectReflection>

      Returns JsxElement

indexTemplate: ((pageEvent) => JsxElement)

Type declaration

    • (pageEvent): JsxElement
    • Parameters

      • pageEvent: PageEvent<ProjectReflection>

      Returns JsxElement

markedPlugin: MarkedPlugin
reflectionTemplate: ((pageEvent) => JsxElement)

Type declaration

    • (pageEvent): JsxElement
    • Parameters

      • pageEvent: PageEvent<ContainerReflection>

      Returns JsxElement

URL_PREFIX: RegExp

Accessors

  • get _listenId(): any
  • A unique id that identifies this instance.

    -

    Returns any

  • get application(): Application
  • Return the application / root component instance.

    -

    Returns Application

  • get owner(): O
  • Return the owner of this component.

    -

    Returns O

Methods

  • A function that maps a DeclarationReflection to a Mapping or returns undefined.

    +
defaultLayoutTemplate: ((pageEvent, template) => JsxElement)

Type declaration

    • (pageEvent, template): JsxElement
    • Parameters

      • pageEvent: PageEvent<Reflection>
      • template: RenderTemplate<PageEvent<Reflection>>

      Returns JsxElement

hierarchyTemplate: ((pageEvent) => JsxElement)

Type declaration

    • (pageEvent): JsxElement
    • Parameters

      • pageEvent: PageEvent<ProjectReflection>

      Returns JsxElement

indexTemplate: ((pageEvent) => JsxElement)

Type declaration

    • (pageEvent): JsxElement
    • Parameters

      • pageEvent: PageEvent<ProjectReflection>

      Returns JsxElement

markedPlugin: MarkedPlugin
reflectionTemplate: ((pageEvent) => JsxElement)

Type declaration

    • (pageEvent): JsxElement
    • Parameters

      • pageEvent: PageEvent<ContainerReflection>

      Returns JsxElement

URL_PREFIX: RegExp

Accessors

  • get _listenId(): any
  • A unique id that identifies this instance.

    +

    Returns any

  • get application(): Application
  • Return the application / root component instance.

    +

    Returns Application

  • get owner(): O
  • Return the owner of this component.

    +

    Returns O

Methods

  • Parameters

    • name: string | Event | EventMap
    • Rest ...args: any[]

    Returns this

  • Parameters

    • project: ProjectReflection

    Returns NavigationElement[]

  • A function that builds URLs for a given DeclarationReflection and an array of URLs mappings.

    +

Returns undefined | Type

  • Parameters

    • name: string | Event | EventMap
    • Rest ...args: any[]

    Returns this

  • Parameters

    • project: ProjectReflection

    Returns NavigationElement[]

  • A function that builds URLs for a given DeclarationReflection and an array of URLs mappings.

    Parameters

    • Rest ...__namedParameters: [Reflection: DeclarationReflection, URLs: UrlMapping<any>[]]

      The DeclarationReflection for which URLs are being built.

    Returns UrlMapping<any>[]

  • If implementing a custom theme, it is recommended to override buildNavigation instead.

    -

    Parameters

    • project: ProjectReflection

    Returns NavigationElement[]

  • Parameters

    • reflection: DeclarationReflection

    Returns string

  • Parameters

    • pageEvent: PageEvent<Reflection>

    Returns DefaultThemeRenderContext

  • Map the models of the given project to the desired output files.

    +

    Parameters

    • project: ProjectReflection

    Returns NavigationElement[]

  • Parameters

    • reflection: DeclarationReflection

    Returns string

  • Parameters

    • pageEvent: PageEvent<Reflection>

    Returns DefaultThemeRenderContext

  • Map the models of the given project to the desired output files.

    Parameters

    • project: ProjectReflection

      The project whose urls should be generated.

    Returns UrlMapping<any>[]

    A list of UrlMapping instances defining which models should be rendered to which files.

    -
  • Initialize this component.

    -

    Returns void

  • Inversion-of-control versions of on. Tell this object to listen to +

  • Initialize this component.

    +

    Returns void

  • Inversion-of-control versions of on. Tell this object to listen to an event in another object... keeping track of what it's listening to for easier unbinding later.

    -

    Parameters

    • obj: EventDispatcher
    • name: string | EventMap
    • Optional callback: EventCallback
    • Optional priority: number

    Returns this

  • Inversion-of-control versions of once.

    -

    Parameters

    • obj: EventDispatcher
    • eventMap: EventMap

    Returns this

  • Parameters

    • obj: EventDispatcher
    • name: string
    • callback: EventCallback
    • Optional priority: number

    Returns this

  • Remove one or many callbacks. If context is null, removes all +

    Parameters

    • obj: EventDispatcher
    • name: string | EventMap
    • Optional callback: EventCallback
    • Optional priority: number

    Returns this

  • Inversion-of-control versions of once.

    +

    Parameters

    • obj: EventDispatcher
    • eventMap: EventMap

    Returns this

  • Parameters

    • obj: EventDispatcher
    • name: string
    • callback: EventCallback
    • Optional priority: number

    Returns this

  • Remove one or many callbacks. If context is null, removes all callbacks with that function. If callback is null, removes all callbacks for the event. If name is null, removes all bound callbacks for all events.

    -

    Returns this

  • Parameters

    • eventMap: undefined | EventMap
    • Optional context: any

    Returns this

  • Parameters

    • name: undefined | string
    • Optional callback: EventCallback
    • Optional context: any

    Returns this

  • Bind an event to a callback function. Passing "all" will bind +

    Returns this

  • Parameters

    • eventMap: undefined | EventMap
    • Optional context: any

    Returns this

  • Parameters

    • name: undefined | string
    • Optional callback: EventCallback
    • Optional context: any

    Returns this

  • Bind an event to a callback function. Passing "all" will bind the callback to all events fired.

    -

    Parameters

    • eventMap: EventMap
    • Optional context: any

    Returns this

  • Parameters

    • eventMap: EventMap
    • Optional callback: EventCallback
    • Optional context: any
    • Optional priority: number

    Returns this

  • Parameters

    • name: string
    • callback: EventCallback
    • Optional context: any
    • Optional priority: number

    Returns this

  • Bind an event to only be triggered a single time. After the first time +

    Parameters

    • eventMap: EventMap
    • Optional context: any

    Returns this

  • Parameters

    • eventMap: EventMap
    • Optional callback: EventCallback
    • Optional context: any
    • Optional priority: number

    Returns this

  • Parameters

    • name: string
    • callback: EventCallback
    • Optional context: any
    • Optional priority: number

    Returns this

  • Bind an event to only be triggered a single time. After the first time the callback is invoked, its listener will be removed. If multiple events are passed in using the space-separated syntax, the handler will fire once for each event, not once for a combination of all events.

    -

    Parameters

    • eventMap: EventMap
    • Optional context: any

    Returns this

  • Parameters

    • name: string
    • callback: EventCallback
    • Optional context: any
    • Optional priority: any

    Returns this

  • Parameters

    • page: PageEvent<Reflection>
    • template: RenderTemplate<PageEvent<Reflection>>

    Returns string

  • Tell this object to stop listening to either specific events ... or +

    Parameters

    • eventMap: EventMap
    • Optional context: any

    Returns this

  • Parameters

    • name: string
    • callback: EventCallback
    • Optional context: any
    • Optional priority: any

    Returns this

  • Parameters

    • page: PageEvent<Reflection>
    • template: RenderTemplate<PageEvent<Reflection>>

    Returns string

  • Tell this object to stop listening to either specific events ... or to every object it's currently listening to.

    -

    Parameters

    • Optional obj: EventDispatcher
    • Optional name: string | EventMap
    • Optional callback: EventCallback

    Returns this

  • Trigger one or many events, firing all bound callbacks. Callbacks are +

    Parameters

    • Optional obj: EventDispatcher
    • Optional name: string | EventMap
    • Optional callback: EventCallback

    Returns this

  • Trigger one or many events, firing all bound callbacks. Callbacks are passed the same arguments as trigger is, apart from the event name (unless you're listening on "all", which will cause your callback to receive the true name of the event as the first argument).

    -

    Parameters

    • name: string | Event | EventMap
    • Rest ...args: any[]

    Returns this

  • Generate an anchor url for the given reflection and all of its children.

    +

    Parameters

    • name: string | Event | EventMap
    • Rest ...args: any[]

    Returns this

  • Generate an anchor url for the given reflection and all of its children.

    Parameters

    • reflection: Reflection

      The reflection an anchor url should be created for.

    • container: Reflection

      The nearest reflection having an own document.

      -

    Returns void

  • Return a url for the given reflection.

    +

Returns void

  • Return a url for the given reflection.

    Parameters

    • reflection: Reflection

      The reflection the url should be generated for.

    • Optional relative: Reflection

      The parent reflection the url generation should stop on.

    • Optional separator: string

      The separator used to generate the url.

    Returns string

    The generated url.

    -

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/Function/Build.Merge.html b/Documentation/Function/Build.Merge.html index a30d5327..59c12306 100644 --- a/Documentation/Function/Build.Merge.html +++ b/Documentation/Function/Build.Merge.html @@ -1,2 +1,2 @@ -Merge | typescript-esbuild - v0.3.3
  • Merges multiple objects of type Ts using the provided merge functions and built-in metadata.

    -

    Type Parameters

    • Ts extends readonly unknown[]

    Parameters

    • Rest ...Objects: Ts

    Returns DeepMergeHKT<Ts, Readonly<{
        DeepMergeArraysURI: "DeepMergeLeafURI";
        DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
        DeepMergeOthersURI: "DeepMergeLeafURI";
        DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
        DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
    }>, Readonly<{
        key: PropertyKey;
        parents: readonly Readonly<Record<PropertyKey, unknown>>[];
    }>>

Generated using TypeDoc

\ No newline at end of file +Merge | typescript-esbuild - v0.3.3
  • Merges multiple objects of type Ts using the provided merge functions and built-in metadata.

    +

    Type Parameters

    • Ts extends readonly unknown[]

    Parameters

    • Rest ...Objects: Ts

    Returns DeepMergeHKT<Ts, Readonly<{
        DeepMergeArraysURI: "DeepMergeLeafURI";
        DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
        DeepMergeOthersURI: "DeepMergeLeafURI";
        DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
        DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
    }>, Readonly<{
        key: PropertyKey;
        parents: readonly Readonly<Record<PropertyKey, unknown>>[];
    }>>

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/Function/Merge.Merge.html b/Documentation/Function/Merge.Merge.html index 7f6d7698..9debe5ab 100644 --- a/Documentation/Function/Merge.Merge.html +++ b/Documentation/Function/Merge.Merge.html @@ -1,2 +1,2 @@ -merge | typescript-esbuild - v0.3.3
  • Merges multiple objects of type Ts using the provided merge functions and built-in metadata.

    -

    Type Parameters

    • Ts extends readonly unknown[]

    Parameters

    • Rest ...Objects: Ts

    Returns DeepMergeHKT<Ts, Readonly<{
        DeepMergeArraysURI: "DeepMergeLeafURI";
        DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
        DeepMergeOthersURI: "DeepMergeLeafURI";
        DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
        DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
    }>, Readonly<{
        key: PropertyKey;
        parents: readonly Readonly<Record<PropertyKey, unknown>>[];
    }>>

Generated using TypeDoc

\ No newline at end of file +merge | typescript-esbuild - v0.3.3
  • Merges multiple objects of type Ts using the provided merge functions and built-in metadata.

    +

    Type Parameters

    • Ts extends readonly unknown[]

    Parameters

    • Rest ...Objects: Ts

    Returns DeepMergeHKT<Ts, Readonly<{
        DeepMergeArraysURI: "DeepMergeLeafURI";
        DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
        DeepMergeOthersURI: "DeepMergeLeafURI";
        DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
        DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
    }>, Readonly<{
        key: PropertyKey;
        parents: readonly Readonly<Record<PropertyKey, unknown>>[];
    }>>

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/Interface/Interface_Merge.Type.html b/Documentation/Interface/Interface_Merge.Type.html index a06c2a1c..8d2005b9 100644 --- a/Documentation/Interface/Interface_Merge.Type.html +++ b/Documentation/Interface/Interface_Merge.Type.html @@ -1,2 +1,2 @@ -Type | typescript-esbuild - v0.3.3
interface Type<PMF> (<Ts>(...Objects) => DeepMergeHKT<Ts, Readonly<{
    DeepMergeArraysURI: PMF["DeepMergeArraysURI"] extends keyof DeepMergeMergeFunctionURItoKind<any, any, any>
        ? any[any]
        : "DeepMergeArraysDefaultURI";
    DeepMergeMapsURI: PMF["DeepMergeMapsURI"] extends keyof DeepMergeMergeFunctionURItoKind<any, any, any>
        ? any[any]
        : "DeepMergeMapsDefaultURI";
    DeepMergeOthersURI: PMF["DeepMergeOthersURI"] extends keyof DeepMergeMergeFunctionURItoKind<any, any, any>
        ? any[any]
        : "DeepMergeLeafURI";
    DeepMergeRecordsURI: PMF["DeepMergeRecordsURI"] extends keyof DeepMergeMergeFunctionURItoKind<any, any, any>
        ? any[any]
        : "DeepMergeRecordsDefaultURI";
    DeepMergeSetsURI: PMF["DeepMergeSetsURI"] extends keyof DeepMergeMergeFunctionURItoKind<any, any, any>
        ? any[any]
        : "DeepMergeSetsDefaultURI";
}>, Readonly<{
    key: PropertyKey;
    parents: readonly Readonly<Record<PropertyKey, unknown>>[];
}>>)

Type Parameters

  • PMF extends Partial<DeepMergeMergeFunctionsURIs>

  • Merges multiple objects of type Ts using the provided merge functions and built-in metadata.

    -

    Type Parameters

    • Ts extends readonly unknown[]

    Parameters

    • Rest ...Objects: Ts

    Returns DeepMergeHKT<Ts, Readonly<{
        DeepMergeArraysURI: PMF["DeepMergeArraysURI"] extends keyof DeepMergeMergeFunctionURItoKind<any, any, any>
            ? any[any]
            : "DeepMergeArraysDefaultURI";
        DeepMergeMapsURI: PMF["DeepMergeMapsURI"] extends keyof DeepMergeMergeFunctionURItoKind<any, any, any>
            ? any[any]
            : "DeepMergeMapsDefaultURI";
        DeepMergeOthersURI: PMF["DeepMergeOthersURI"] extends keyof DeepMergeMergeFunctionURItoKind<any, any, any>
            ? any[any]
            : "DeepMergeLeafURI";
        DeepMergeRecordsURI: PMF["DeepMergeRecordsURI"] extends keyof DeepMergeMergeFunctionURItoKind<any, any, any>
            ? any[any]
            : "DeepMergeRecordsDefaultURI";
        DeepMergeSetsURI: PMF["DeepMergeSetsURI"] extends keyof DeepMergeMergeFunctionURItoKind<any, any, any>
            ? any[any]
            : "DeepMergeSetsDefaultURI";
    }>, Readonly<{
        key: PropertyKey;
        parents: readonly Readonly<Record<PropertyKey, unknown>>[];
    }>>

Generated using TypeDoc

\ No newline at end of file +Type | typescript-esbuild - v0.3.3
interface Type<PMF> (<Ts>(...Objects) => DeepMergeHKT<Ts, Readonly<{
    DeepMergeArraysURI: PMF["DeepMergeArraysURI"] extends keyof DeepMergeMergeFunctionURItoKind<any, any, any>
        ? any[any]
        : "DeepMergeArraysDefaultURI";
    DeepMergeMapsURI: PMF["DeepMergeMapsURI"] extends keyof DeepMergeMergeFunctionURItoKind<any, any, any>
        ? any[any]
        : "DeepMergeMapsDefaultURI";
    DeepMergeOthersURI: PMF["DeepMergeOthersURI"] extends keyof DeepMergeMergeFunctionURItoKind<any, any, any>
        ? any[any]
        : "DeepMergeLeafURI";
    DeepMergeRecordsURI: PMF["DeepMergeRecordsURI"] extends keyof DeepMergeMergeFunctionURItoKind<any, any, any>
        ? any[any]
        : "DeepMergeRecordsDefaultURI";
    DeepMergeSetsURI: PMF["DeepMergeSetsURI"] extends keyof DeepMergeMergeFunctionURItoKind<any, any, any>
        ? any[any]
        : "DeepMergeSetsDefaultURI";
}>, Readonly<{
    key: PropertyKey;
    parents: readonly Readonly<Record<PropertyKey, unknown>>[];
}>>)

Type Parameters

  • PMF extends Partial<DeepMergeMergeFunctionsURIs>

  • Merges multiple objects of type Ts using the provided merge functions and built-in metadata.

    +

    Type Parameters

    • Ts extends readonly unknown[]

    Parameters

    • Rest ...Objects: Ts

    Returns DeepMergeHKT<Ts, Readonly<{
        DeepMergeArraysURI: PMF["DeepMergeArraysURI"] extends keyof DeepMergeMergeFunctionURItoKind<any, any, any>
            ? any[any]
            : "DeepMergeArraysDefaultURI";
        DeepMergeMapsURI: PMF["DeepMergeMapsURI"] extends keyof DeepMergeMergeFunctionURItoKind<any, any, any>
            ? any[any]
            : "DeepMergeMapsDefaultURI";
        DeepMergeOthersURI: PMF["DeepMergeOthersURI"] extends keyof DeepMergeMergeFunctionURItoKind<any, any, any>
            ? any[any]
            : "DeepMergeLeafURI";
        DeepMergeRecordsURI: PMF["DeepMergeRecordsURI"] extends keyof DeepMergeMergeFunctionURItoKind<any, any, any>
            ? any[any]
            : "DeepMergeRecordsDefaultURI";
        DeepMergeSetsURI: PMF["DeepMergeSetsURI"] extends keyof DeepMergeMergeFunctionURItoKind<any, any, any>
            ? any[any]
            : "DeepMergeSetsDefaultURI";
    }>, Readonly<{
        key: PropertyKey;
        parents: readonly Readonly<Record<PropertyKey, unknown>>[];
    }>>

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/Interface/Interface_Theme.Type.html b/Documentation/Interface/Interface_Theme.Type.html index 3a14a325..ed482578 100644 --- a/Documentation/Interface/Interface_Theme.Type.html +++ b/Documentation/Interface/Interface_Theme.Type.html @@ -37,33 +37,33 @@

Returns UrlMapping<any>[]

Param: Reflection

The DeclarationReflection for which URLs are being built.

Param: URLs

An array of URLs mappings with any data type.

componentName: string

The name of this component as set by the @Component decorator.

-
defaultLayoutTemplate: ((pageEvent, template) => JsxElement)

Type declaration

    • (pageEvent, template): JsxElement
    • Parameters

      • pageEvent: PageEvent<Reflection>
      • template: RenderTemplate<PageEvent<Reflection>>

      Returns JsxElement

hierarchyTemplate: ((pageEvent) => JsxElement)

Type declaration

    • (pageEvent): JsxElement
    • Parameters

      • pageEvent: PageEvent<ProjectReflection>

      Returns JsxElement

indexTemplate: ((pageEvent) => JsxElement)

Type declaration

    • (pageEvent): JsxElement
    • Parameters

      • pageEvent: PageEvent<ProjectReflection>

      Returns JsxElement

markedPlugin: MarkedPlugin
reflectionTemplate: ((pageEvent) => JsxElement)

Type declaration

    • (pageEvent): JsxElement
    • Parameters

      • pageEvent: PageEvent<ContainerReflection>

      Returns JsxElement

Accessors

  • get _listenId(): any
  • A unique id that identifies this instance.

    -

    Returns any

  • get application(): Application
  • Return the application / root component instance.

    -

    Returns Application

  • get owner(): O
  • Return the owner of this component.

    -

    Returns O

Methods

  • Parameters

    • name: string | Event | EventMap
    • Rest ...args: any[]

    Returns this

  • Parameters

    • project: ProjectReflection

    Returns NavigationElement[]

  • If implementing a custom theme, it is recommended to override buildNavigation instead.

    -

    Parameters

    • project: ProjectReflection

    Returns NavigationElement[]

  • Parameters

    • reflection: DeclarationReflection

    Returns string

  • Parameters

    • pageEvent: PageEvent<Reflection>

    Returns DefaultThemeRenderContext

  • Map the models of the given project to the desired output files.

    +
defaultLayoutTemplate: ((pageEvent, template) => JsxElement)

Type declaration

    • (pageEvent, template): JsxElement
    • Parameters

      • pageEvent: PageEvent<Reflection>
      • template: RenderTemplate<PageEvent<Reflection>>

      Returns JsxElement

hierarchyTemplate: ((pageEvent) => JsxElement)

Type declaration

    • (pageEvent): JsxElement
    • Parameters

      • pageEvent: PageEvent<ProjectReflection>

      Returns JsxElement

indexTemplate: ((pageEvent) => JsxElement)

Type declaration

    • (pageEvent): JsxElement
    • Parameters

      • pageEvent: PageEvent<ProjectReflection>

      Returns JsxElement

markedPlugin: MarkedPlugin
reflectionTemplate: ((pageEvent) => JsxElement)

Type declaration

    • (pageEvent): JsxElement
    • Parameters

      • pageEvent: PageEvent<ContainerReflection>

      Returns JsxElement

Accessors

  • get _listenId(): any
  • A unique id that identifies this instance.

    +

    Returns any

  • get application(): Application
  • Return the application / root component instance.

    +

    Returns Application

  • get owner(): O
  • Return the owner of this component.

    +

    Returns O

Methods

  • Parameters

    • name: string | Event | EventMap
    • Rest ...args: any[]

    Returns this

  • Parameters

    • project: ProjectReflection

    Returns NavigationElement[]

  • If implementing a custom theme, it is recommended to override buildNavigation instead.

    +

    Parameters

    • project: ProjectReflection

    Returns NavigationElement[]

  • Parameters

    • reflection: DeclarationReflection

    Returns string

  • Parameters

    • pageEvent: PageEvent<Reflection>

    Returns DefaultThemeRenderContext

  • Map the models of the given project to the desired output files.

    Parameters

    • project: ProjectReflection

      The project whose urls should be generated.

    Returns UrlMapping<any>[]

    A list of UrlMapping instances defining which models should be rendered to which files.

    -
  • Initialize this component.

    -

    Returns void

  • Inversion-of-control versions of on. Tell this object to listen to +

  • Initialize this component.

    +

    Returns void

  • Inversion-of-control versions of on. Tell this object to listen to an event in another object... keeping track of what it's listening to for easier unbinding later.

    -

    Parameters

    • obj: EventDispatcher
    • name: string | EventMap
    • Optional callback: EventCallback
    • Optional priority: number

    Returns this

  • Inversion-of-control versions of once.

    -

    Parameters

    • obj: EventDispatcher
    • eventMap: EventMap

    Returns this

  • Parameters

    • obj: EventDispatcher
    • name: string
    • callback: EventCallback
    • Optional priority: number

    Returns this

  • Remove one or many callbacks. If context is null, removes all +

    Parameters

    • obj: EventDispatcher
    • name: string | EventMap
    • Optional callback: EventCallback
    • Optional priority: number

    Returns this

  • Inversion-of-control versions of once.

    +

    Parameters

    • obj: EventDispatcher
    • eventMap: EventMap

    Returns this

  • Parameters

    • obj: EventDispatcher
    • name: string
    • callback: EventCallback
    • Optional priority: number

    Returns this

  • Remove one or many callbacks. If context is null, removes all callbacks with that function. If callback is null, removes all callbacks for the event. If name is null, removes all bound callbacks for all events.

    -

    Returns this

  • Parameters

    • eventMap: undefined | EventMap
    • Optional context: any

    Returns this

  • Parameters

    • name: undefined | string
    • Optional callback: EventCallback
    • Optional context: any

    Returns this

  • Bind an event to a callback function. Passing "all" will bind +

    Returns this

  • Parameters

    • eventMap: undefined | EventMap
    • Optional context: any

    Returns this

  • Parameters

    • name: undefined | string
    • Optional callback: EventCallback
    • Optional context: any

    Returns this

  • Bind an event to a callback function. Passing "all" will bind the callback to all events fired.

    -

    Parameters

    • eventMap: EventMap
    • Optional context: any

    Returns this

  • Parameters

    • eventMap: EventMap
    • Optional callback: EventCallback
    • Optional context: any
    • Optional priority: number

    Returns this

  • Parameters

    • name: string
    • callback: EventCallback
    • Optional context: any
    • Optional priority: number

    Returns this

  • Bind an event to only be triggered a single time. After the first time +

    Parameters

    • eventMap: EventMap
    • Optional context: any

    Returns this

  • Parameters

    • eventMap: EventMap
    • Optional callback: EventCallback
    • Optional context: any
    • Optional priority: number

    Returns this

  • Parameters

    • name: string
    • callback: EventCallback
    • Optional context: any
    • Optional priority: number

    Returns this

  • Bind an event to only be triggered a single time. After the first time the callback is invoked, its listener will be removed. If multiple events are passed in using the space-separated syntax, the handler will fire once for each event, not once for a combination of all events.

    -

    Parameters

    • eventMap: EventMap
    • Optional context: any

    Returns this

  • Parameters

    • name: string
    • callback: EventCallback
    • Optional context: any
    • Optional priority: any

    Returns this

  • Parameters

    • page: PageEvent<Reflection>
    • template: RenderTemplate<PageEvent<Reflection>>

    Returns string

  • Tell this object to stop listening to either specific events ... or +

    Parameters

    • eventMap: EventMap
    • Optional context: any

    Returns this

  • Parameters

    • name: string
    • callback: EventCallback
    • Optional context: any
    • Optional priority: any

    Returns this

  • Parameters

    • page: PageEvent<Reflection>
    • template: RenderTemplate<PageEvent<Reflection>>

    Returns string

  • Tell this object to stop listening to either specific events ... or to every object it's currently listening to.

    -

    Parameters

    • Optional obj: EventDispatcher
    • Optional name: string | EventMap
    • Optional callback: EventCallback

    Returns this

  • Trigger one or many events, firing all bound callbacks. Callbacks are +

    Parameters

    • Optional obj: EventDispatcher
    • Optional name: string | EventMap
    • Optional callback: EventCallback

    Returns this

  • Trigger one or many events, firing all bound callbacks. Callbacks are passed the same arguments as trigger is, apart from the event name (unless you're listening on "all", which will cause your callback to receive the true name of the event as the first argument).

    -

    Parameters

    • name: string | Event | EventMap
    • Rest ...args: any[]

    Returns this

Generated using TypeDoc

\ No newline at end of file +

Parameters

Returns this

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/Module/Build.html b/Documentation/Module/Build.html index 43fd7fef..1b31c9b6 100644 --- a/Documentation/Module/Build.html +++ b/Documentation/Module/Build.html @@ -1,4 +1,4 @@ -Build | typescript-esbuild - v0.3.3

Index

Interfaces

Type +Build | typescript-esbuild - v0.3.3

Index

Interfaces

Variables

Functions

Exec diff --git a/Documentation/Module/Exec.html b/Documentation/Module/Exec.html index 2795edea..4eeb2fed 100644 --- a/Documentation/Module/Exec.html +++ b/Documentation/Module/Exec.html @@ -1,3 +1,3 @@ -Exec | typescript-esbuild - v0.3.3

Index

Interfaces

Type +Exec | typescript-esbuild - v0.3.3

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/Module/File.html b/Documentation/Module/File.html index 43a42947..753a905b 100644 --- a/Documentation/Module/File.html +++ b/Documentation/Module/File.html @@ -1,3 +1,3 @@ -File | typescript-esbuild - v0.3.3

Index

Interfaces

Type +File | typescript-esbuild - v0.3.3

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/Module/JSON.html b/Documentation/Module/JSON.html index b0ad7a83..cd684319 100644 --- a/Documentation/Module/JSON.html +++ b/Documentation/Module/JSON.html @@ -1,3 +1,3 @@ -JSON | typescript-esbuild - v0.3.3

Index

Interfaces

Type +JSON | typescript-esbuild - v0.3.3

Generated using TypeDoc

\ No newline at end of file diff --git a/Documentation/assets/search.js b/Documentation/assets/search.js index f280cefa..7bdd4fed 100644 --- a/Documentation/assets/search.js +++ b/Documentation/assets/search.js @@ -1 +1 @@ -window.searchData = "data:application/octet-stream;base64,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"; \ No newline at end of file +window.searchData = "data:application/octet-stream;base64,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"; \ No newline at end of file