@rnaga/wp-node
Version:
👉 **[View Full Documentation at rnaga.github.io/wp-node →](https://rnaga.github.io/wp-node/)**
13 lines • 481 B
TypeScript
import { Config } from "../config";
import { SchemaBuilder } from "../schema-builder/schema-builder";
type SchemaScope = "all" | "blog" | "global" | "ms_global";
export declare class Schema {
private schemaBuilder;
private config;
constructor(schemaBuilder: SchemaBuilder, config: Config);
usingBlog(id: number): this;
build(scope?: SchemaScope | ""): Promise<void>;
dropBlog(blogId: number): Promise<void>;
}
export {};
//# sourceMappingURL=schema.d.ts.map