@arnabxd/bin-lookup
Version:
Search bin details from various bin database
20 lines (19 loc) • 420 B
TypeScript
export interface Result {
result: boolean;
message: string;
data?: {
bin: number;
vendor: string;
type: string;
level: string;
bank: string;
country: string;
countryInfo: {
name: string;
emoji: string;
unicode: string;
code: string;
};
};
}
export declare type Sites = 'bins.ws' | 'bins.su';