KC's Workspace
    Preparing search index...

    Handles @include and @includeCode within comments/documents.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    componentName: string

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

    Accessors

    • get owner(): O

      Return the owner of this component.

      Returns O

    Methods

    • Parameters

      • refl: Reflection
      • file: string
      • textPart: string
      • text: string
      • requestedLines: string
      • tag: string

      Returns string

    • Parameters

      • refl: Reflection
      • file: string
      • ext: string
      • textPart: string
      • text: string
      • regionTargets: string
      • tag: string
      • ignoreIndent: boolean

      Returns string

    • Stops listening to an event.

      Type Parameters

      • K extends never

      Parameters

      • event: K

        the event to stop listening to.

      • listener: (this: undefined, ...args: {}[K]) => void

        the function to remove from the listener array.

      Returns void

    • Starts listening to an event.

      Type Parameters

      • K extends never

      Parameters

      • event: K

        the event to listen to.

      • listener: (this: undefined, ...args: {}[K]) => void

        function to be called when an this event is emitted.

      • Optionalpriority: number

        optional priority to insert this hook with. Higher priority is placed earlier in the listener array.

      Returns void

    • Emits an event to all currently subscribed listeners.

      Type Parameters

      • K extends never

      Parameters

      • event: K

        the event to emit.

      • ...args: {}[K]

        any arguments required for the event.

      Returns void