fast-cli
Version:
Test your download and upload speed using fast.com
19 lines (18 loc) • 438 B
TypeScript
type Options = {
measureUpload?: boolean;
};
type Result = {
downloadSpeed: number;
uploadSpeed: number;
downloadUnit: string;
downloaded: number;
uploadUnit: string;
uploaded: number;
latency: number;
bufferBloat: number;
userLocation: string;
userIp: string;
isDone: boolean;
};
export default function runSpeedTest(options?: Options): AsyncGenerator<Result, void, undefined>;
export {};