fix: type improvements & cleanup

This commit is contained in:
Daniel Hougaard
2025-05-07 01:18:08 +04:00
parent 455454e186
commit e849841819
3 changed files with 8 additions and 5 deletions

View File

@@ -1,4 +1,7 @@
type SecretType = "shared" | "personal";
export enum SecretType {
Shared = "shared",
Personal = "personal"
}
export interface Secret {
id: string;