UNPKG

@giancarl021/cli-core-vault-extension

Version:

Plain and secure storage extension for the @giancarl021/cli-core npm package

7 lines (6 loc) 254 B
export default interface SecretEntry { getPassword(): Promise<string | null>; setPassword(password: string): Promise<void>; deletePassword(): Promise<boolean>; } export type SecretEntryFactory = (appName: string, key: string) => SecretEntry;