mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-03-28 03:22:50 -04:00
7 lines
170 B
TypeScript
7 lines
170 B
TypeScript
/**
|
|
* Vault post response type returned after uploading a new vault to the server.
|
|
*/
|
|
export type VaultPostResponse = {
|
|
status: number;
|
|
newRevisionNumber: number;
|
|
} |