mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 15:04:45 +00:00
34 lines
1.4 KiB
TypeScript
34 lines
1.4 KiB
TypeScript
|
import { CloudFunction, EventContext } from '../cloud-functions';
|
||
|
import * as firebase from 'firebase-admin';
|
||
|
/**
|
||
|
* Handle events related to Firebase authentication users.
|
||
|
*/
|
||
|
export declare function user(): UserBuilder;
|
||
|
export declare class UserRecordMetadata implements firebase.auth.UserMetadata {
|
||
|
creationTime: string;
|
||
|
lastSignInTime: string;
|
||
|
constructor(creationTime: string, lastSignInTime: string);
|
||
|
/** Returns a plain JavaScript object with the properties of UserRecordMetadata. */
|
||
|
toJSON(): {
|
||
|
creationTime: string;
|
||
|
lastSignInTime: string;
|
||
|
};
|
||
|
}
|
||
|
/** Builder used to create Cloud Functions for Firebase Auth user lifecycle events. */
|
||
|
export declare class UserBuilder {
|
||
|
private triggerResource;
|
||
|
private opts;
|
||
|
private static dataConstructor(raw);
|
||
|
/** Respond to the creation of a Firebase Auth user. */
|
||
|
onCreate(handler: (user: UserRecord, context: EventContext) => PromiseLike<any> | any): CloudFunction<UserRecord>;
|
||
|
/** Respond to the deletion of a Firebase Auth user. */
|
||
|
onDelete(handler: (user: UserRecord, context: EventContext) => PromiseLike<any> | any): CloudFunction<UserRecord>;
|
||
|
private onOperation(handler, eventType);
|
||
|
}
|
||
|
/**
|
||
|
* The UserRecord passed to Cloud Functions is the same UserRecord that is returned by the Firebase Admin
|
||
|
* SDK.
|
||
|
*/
|
||
|
export declare type UserRecord = firebase.auth.UserRecord;
|
||
|
export declare function userRecordConstructor(wireData: Object): firebase.auth.UserRecord;
|