mirror of
https://github.com/kunkunsh/kunkun-ext-disk-speed.git
synced 2025-04-11 17:29:42 +00:00
13 lines
330 B
TypeScript
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";
|