12 lines
217 B
TypeScript
12 lines
217 B
TypeScript
import * as plugins from '../plugins.js';
|
|
|
|
export interface IExternalRegistry {
|
|
id: string;
|
|
data: {
|
|
type: 'docker' | 'npm';
|
|
name: string;
|
|
url: string;
|
|
username: string;
|
|
password: string;
|
|
};
|
|
} |