firebase-types 0.0.1

Implementation agnostic types of firebase for use in rust
1
2
3
4
5
6
7
8
9
/// TS type:
/// /** The error code for this error. */
/// readonly code: string
///  /** Custom data for this error. */
/// customData?: Record<string, unknown> | undefined;
pub struct FirebaseError {
	code: String,
	customData: Option<HashMap<String, JsValue>>,
}