ft_transcendence/pong/node_modules/@nestjs/cli/lib/schematics/custom.collection.d.ts
2023-05-02 19:15:50 +02:00

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[];
}