2025-03-23 08:04:07 -04:00

13 lines
330 B
TypeScript

import type {
createEmptyFile,
sequentialReadTest,
sequentialWriteTest,
} from "../speedtest/lib.ts";
export interface API {
sequentialWriteTest: typeof sequentialWriteTest;
sequentialReadTest: typeof sequentialReadTest;
createEmptyFile: typeof createEmptyFile;
}
export type { Progress } from "../speedtest/lib.ts";