Files
test_server/node_modules/firebase-functions/lib/common/onInit.d.ts
girinb 485098cd1a link
2025-05-29 15:41:51 +09:00

8 lines
339 B
TypeScript

/**
* Registers a callback that should be run when in a production environment
* before executing any functions code.
* Calling this function more than once leads to undefined behavior.
* @param callback initialization callback to be run before any function executes.
*/
export declare function onInit(callback: () => unknown): void;