You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
extollo-cli/src/Template.ts

10 lines
282 B

import {UniversalPath} from '@extollo/util'
export interface Template {
name: string,
fileSuffix: string,
description: string,
baseAppPath: string[],
render: (name: string, fullCanonicalName: string, targetFilePath: UniversalPath) => string | Promise<string>
}