mirror of
https://github.com/standardnotes/server
synced 2026-07-14 09:01:33 -04:00
12 lines
235 B
TypeScript
12 lines
235 B
TypeScript
export interface RemoveFileDTO {
|
|
userInput?: {
|
|
userUuid: string
|
|
resourceRemoteIdentifier: string
|
|
regularSubscriptionUuid: string
|
|
}
|
|
vaultInput?: {
|
|
sharedVaultUuid: string
|
|
resourceRemoteIdentifier: string
|
|
}
|
|
}
|