UNPKG

flamesshield-sdk

Version:

Flames Shield Smart rate limiting for Firebase Cloud Functions to protect your services from excessive requests

13 lines 385 B
interface RemotePostData { functionName: string; qualifier?: string; maxCalls: number; periodSeconds: number; version: string; } interface RemoteOptions { verbose?: boolean; } export declare const remotePost: (data: RemotePostData, apiKey: string, remoteUrl?: string, options?: RemoteOptions) => Promise<boolean>; export {}; //# sourceMappingURL=remote.d.ts.map