Skip to content

Latest commit

 

History

History
145 lines (83 loc) · 3.93 KB

API.md

File metadata and controls

145 lines (83 loc) · 3.93 KB

API Reference

Structs

FunctionParams

Function parameters.

Initializer

import { FunctionParams } from 'jsii-docgen-mre'

const functionParams: FunctionParams = { ... }

Properties

Name Type Description
paramOne string | IOne[] No description.
paramTwo IOne[] | string[] No description.

paramOneRequired
public readonly paramOne: string | IOne[];
  • Type: string | IOne[]

paramTwoRequired
public readonly paramTwo: IOne[] | string[];
  • Type: IOne[] | string[]

Classes

ConstructFoo

Initializers

import { ConstructFoo } from 'jsii-docgen-mre'

new ConstructFoo(fnParams: FunctionParams)
Name Type Description
fnParams FunctionParams No description.

fnParamsRequired

Methods

Name Description
add No description.

add
public add(num_one: number, num_two: number): number
num_oneRequired
  • Type: number

num_twoRequired
  • Type: number

Properties

Name Type Description
internalParam string | IOne[] No description.

internalParamRequired
public readonly internalParam: string | IOne[];
  • Type: string | IOne[]

Protocols

IOne

  • Implemented By: IOne

Interface for providing config for paramOne.

Properties

Name Type Description
foo string Param foo.

fooRequired
public readonly foo: string;
  • Type: string

Param foo.