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