UNPKG

@butlerbot/sdk

Version:

The official ButlerBot SDK

10 lines (9 loc) 347 B
import { UsagePolicyData } from "../types/usage/policy"; export type UsagePolicyDataOptions = { serverURL?: string; path?: string; apiKey: string; debug?: boolean; }; /** Fetches the current usage policy data from the server */ export declare function getUsagePolicyData(options: UsagePolicyDataOptions): Promise<UsagePolicyData>;