2023-05-23 18:53:53 +00:00
|
|
|
import type { FileMeta } from "../types.ts";
|
|
|
|
|
|
|
|
// export type FileEncoding = "utf8" | "arraybuffer" | "dataurl";
|
|
|
|
// export type FileData = ArrayBuffer | string;
|
2022-04-07 13:21:30 +00:00
|
|
|
|
|
|
|
export interface SpacePrimitives {
|
2023-01-13 14:41:29 +00:00
|
|
|
// Returns a list of file meta data as well as the timestamp of this snapshot
|
2022-09-12 12:50:37 +00:00
|
|
|
fetchFileList(): Promise<FileMeta[]>;
|
|
|
|
readFile(
|
2022-04-07 13:21:30 +00:00
|
|
|
name: string,
|
2023-05-23 18:53:53 +00:00
|
|
|
): Promise<{ data: Uint8Array; meta: FileMeta }>;
|
2022-09-12 12:50:37 +00:00
|
|
|
getFileMeta(name: string): Promise<FileMeta>;
|
|
|
|
writeFile(
|
2022-09-05 09:47:30 +00:00
|
|
|
name: string,
|
2023-05-23 18:53:53 +00:00
|
|
|
data: Uint8Array,
|
2023-01-13 14:41:29 +00:00
|
|
|
// Used to decide whether or not to emit change events
|
2022-10-12 09:47:13 +00:00
|
|
|
selfUpdate?: boolean,
|
2023-05-23 18:53:53 +00:00
|
|
|
lastModified?: number,
|
2022-09-12 12:50:37 +00:00
|
|
|
): Promise<FileMeta>;
|
|
|
|
deleteFile(name: string): Promise<void>;
|
2022-04-07 13:21:30 +00:00
|
|
|
}
|