keepasshttp-client
Version:
Node.js module for interaction with KeePassHTTP
17 lines (16 loc) • 327 B
TypeScript
export interface Minimum {
url: string;
}
export interface Base extends Minimum {
submitUrl?: string;
realm?: string;
}
export interface Modify extends Minimum {
login: string;
password: string;
}
export interface Create extends Modify, Base {
}
export interface Update extends Modify {
uuid: string;
}