mirror of
https://github.com/Infisical/infisical.git
synced 2026-05-02 03:02:03 -04:00
20 lines
334 B
TypeScript
20 lines
334 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 | undefined;
|
|
valueOverride: string | undefined;
|
|
id: string;
|
|
idOverride?: string;
|
|
comment: string;
|
|
tags: Tag[];
|
|
}
|