9 lines
166 B
TypeScript
9 lines
166 B
TypeScript
import * as interfaces from './';
|
|
|
|
export interface ISecretCreationDescriptor {
|
|
name: string;
|
|
version: string;
|
|
contentArg: any;
|
|
labels: interfaces.TLabels;
|
|
}
|