mirror of
https://github.com/standardnotes/server
synced 2026-01-16 20:04:32 -05:00
9 lines
120 B
TypeScript
9 lines
120 B
TypeScript
export type RemoveFileResponse =
|
|
| {
|
|
success: true
|
|
}
|
|
| {
|
|
success: false
|
|
message: string
|
|
}
|