mirror of
https://github.com/standardnotes/server
synced 2026-07-31 05:16:40 -04:00
4 lines
111 B
TypeScript
4 lines
111 B
TypeScript
export interface FileMoverInterface {
|
|
moveFile(sourcePath: string, destinationPath: string): Promise<void>
|
|
}
|