UNPKG

admob-ssv

Version:

Tool for validate AdMob rewarded ads signatures SSV

11 lines (8 loc) 243 B
import type RawKeyRegister from '../rawkeys' export interface FetcherOptions { url?: string } export default abstract class KeyFetcher { constructor(public options: FetcherOptions = {}) {} abstract fetch(): Promise<RawKeyRegister[]> }