Options
All
  • Public
  • Public/Protected
  • All
Menu

External module "flattened"

Index

Functions

flattenedCallback

  • flattenedCallback(callback: function): void
  • A function that has a parameter that requires a typed function callback.

    Parameters

    • callback: function

      The typed function callback.

        • (param: number, optionalParam?: string): string
        • Parameters

          • param: number

            A parameter of the typed function callback.

          • Optional optionalParam: string

            An optional parameter of the typed function callback.

          Returns string

    Returns void

flattenedIndexSignature

  • flattenedIndexSignature(indexed: object): void
  • A function that accepts an index signature parameter.

    Parameters

    • indexed: object

      The index signature parameter.

      • [index: number]: object
        • name: string
        • Optional value?: number
      • test: string

        A property of the index signature instance.

    Returns void

flattenedParameter

  • flattenedParameter(options: object): void
  • A function that accepts an option object defined inline.

    Parameters

    • options: object

      The inline typed options object.

      • [name: string]: any
      • Optional anotherValue?: string

        Another value on the options object parameter.

      • Optional moreOptions?: object

        A typed child object of the options object.

        • moreValues: number

          A value of the typed child object.

      • Optional value?: string

        A value on the options object parameter.

    Returns void

Generated using TypeDoc