Skip to content

Latest commit

 

History

History
75 lines (39 loc) · 1.2 KB

faastjs.faastlocal.md

File metadata and controls

75 lines (39 loc) · 1.2 KB
id title hide_title
faastjs.faastlocal
faastLocal() function
true

faastjs > faastLocal

faastLocal() function

The main entry point for faast with Local provider.

Signature:

export declare function faastLocal<M extends object>(fmodule: M, options?: LocalOptions): Promise<LocalFaastModule<M>>;

Parameters

Parameter

Type

Description

fmodule

M

A module imported with import * as X from "Y";. Using require also works but loses type information.

options

LocalOptions

(Optional) Most common options are in CommonOptions. Additional Local-specific options are in LocalOptions.

**Returns:**

Promise<LocalFaastModule<M>>

a Promise for LocalFaastModule.