UNPKG

@telefonica/opensource-scaffold

Version:

Scaffolding for open source projects. A CLI tool to create open source repositories with standard tools and resources

12 lines (11 loc) 300 B
/** * Represents a resource of the Open Source scaffold */ export interface Resource { /** The friendly name for the resource */ name: string; /** The path where the resource will be created */ path: string; /** The path to the template of the resource */ origin: string; }