Interface iBitBadgesApi<T>

interface iBitBadgesApi<T> {
    apiKey?: string;
    apiUrl?: string;
    appendedHeaders?: Record<string, string>;
    convertFunction: ((num: NumberType) => T);
}

Type Parameters

Properties

apiKey?: string
apiUrl?: string
appendedHeaders?: Record<string, string>
convertFunction: ((num: NumberType) => T)