签名:
export declare class DatabaseBuilder
构造函数
构造函数 | 修饰符 | 说明 |
---|---|---|
(构造函数)(数据库, 选项) | 构造 DatabaseBuilder 类的新实例 |
方法
方法 | 修饰符 | 说明 |
---|---|---|
document(path) | ||
namespace(namespace) |
Firestore.DatabaseBuilder.(构造函数)
构造 DatabaseBuilder
类的新实例
签名:
constructor(database: string, options: DeploymentOptions);
参数
参数 | 类型 | 说明 |
---|---|---|
数据库 | 字符串 | |
选项 | DeploymentOptions |
Firestore.DatabaseBuilder.document()
签名:
document<Path extends string>(path: Path): DocumentBuilder<Path>;
参数
参数 | 类型 | 说明 |
---|---|---|
路径 | 路径 |
返回:
DocumentBuilder<路径>
Firestore.DatabaseBuilder.namespace()
签名:
namespace(namespace: string): NamespaceBuilder;
参数
参数 | 类型 | 说明 |
---|---|---|
命名空间 | 字符串 |
返回: