@rnaga/wp-node
Version:
👉 **[View Full Documentation at rnaga.github.io/wp-node →](https://rnaga.github.io/wp-node/)**
20 lines • 708 B
TypeScript
import { Config } from "../config";
import { Components } from "./components";
import { Logger } from "./logger";
export declare class Options {
private components;
private logger;
private config;
constructor(components: Components, logger: Logger, config: Config);
private get tables();
usingBlog(id: number): this;
resetBlog(): this;
private getMultiple;
get<T = string, Name extends string | string[] = string>(name: Name, args?: {
withPrefix?: boolean;
siteId?: number | undefined;
blogId?: number | undefined;
default?: T;
}): Promise<Name extends string ? T | undefined : Map<string, any>>;
}
//# sourceMappingURL=options.d.ts.map