Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 730 Bytes

faastjs.proxymoduledetail.md

File metadata and controls

25 lines (18 loc) · 730 Bytes
id title hide_title
faastjs.proxymoduledetail
ProxyModuleDetail type
true

faastjs > ProxyModuleDetail

ProxyModuleDetail type

Similar to ProxyModule except each function returns a Detail object.

Signature:

export type ProxyModuleDetail<M> = {
    [K in keyof M]: M[K] extends (...args: infer A) => infer R ? (...args: A) => AsyncDetail<R> : never;
};

References: AsyncDetail

Remarks

See FaastModule.functionsDetail.