mirror of
https://github.com/musix-org/musix-oss
synced 2025-01-12 18:14:51 +00:00
15 lines
520 B
TypeScript
15 lines
520 B
TypeScript
import { _FirebaseNamespace } from '@firebase/app-types/private';
|
|
import * as types from '@firebase/functions-types';
|
|
export declare function registerFunctions(instance: _FirebaseNamespace): void;
|
|
declare module '@firebase/app-types' {
|
|
interface FirebaseNamespace {
|
|
functions?: {
|
|
(app?: FirebaseApp): types.FirebaseFunctions;
|
|
Functions: typeof types.FirebaseFunctions;
|
|
};
|
|
}
|
|
interface FirebaseApp {
|
|
functions?(region?: string): types.FirebaseFunctions;
|
|
}
|
|
}
|