docker/ts/interfaces/secret.ts

9 lines
174 B
TypeScript
Raw Permalink Normal View History

2022-10-17 07:36:35 +00:00
import * as interfaces from './index.js';
2019-09-12 12:45:36 +00:00
export interface ISecretCreationDescriptor {
name: string;
2019-09-13 12:40:38 +00:00
version: string;
2019-09-12 12:45:36 +00:00
contentArg: any;
labels: interfaces.TLabels;
2019-09-13 16:20:12 +00:00
}