Files
infisical/frontend/public/data/frequentInterfaces.ts
2023-02-07 16:29:15 -08:00

18 lines
300 B
TypeScript

export interface Tag {
_id: string;
name: string;
slug: string;
user: string;
workspace: string;
createdAt: string;
}
export interface SecretDataProps {
pos: number;
key: string;
value: string;
valueOverride: string | undefined;
id: string;
comment: string;
tags: Tag[];
}