- Prefijo v2: MCH - TRACEABILITY-MASTER.yml creado - Listo para integracion como submodulo Workspace: v2.0.0 | SIMCO: v4.0.0
11 lines
319 B
TypeScript
11 lines
319 B
TypeScript
import { AbstractCollection } from './abstract.collection';
|
|
import { Schematic } from './nest.collection';
|
|
export interface CollectionSchematic {
|
|
schema: string;
|
|
description: string;
|
|
aliases: string[];
|
|
}
|
|
export declare class CustomCollection extends AbstractCollection {
|
|
getSchematics(): Schematic[];
|
|
}
|