docker/ts/interfaces/secret.ts
2022-10-17 09:36:35 +02:00

9 lines
174 B
TypeScript

import * as interfaces from './index.js';
export interface ISecretCreationDescriptor {
name: string;
version: string;
contentArg: any;
labels: interfaces.TLabels;
}