Skip to content

Latest commit

 

History

History
48 lines (26 loc) · 812 Bytes

README.md

File metadata and controls

48 lines (26 loc) · 812 Bytes

foundation

foundation

Table of contents

Type Aliases

Functions

Type Aliases

Any

Ƭ Any: boolean | string | number | object | symbol | null | undefined | any[] | (...args: any[]) => any

Defined in

types.ts:1

Functions

add

add(a, b): number

Returns the sum of the two provided numbers.

Parameters

Name Type Description
a number First number umber.
b number Other number.

Returns

number

The sum of both numbers.

Defined in

tools/add.ts:8