mirror of
https://github.com/chenasraf/simple-scaffold.git
synced 2026-05-17 17:28:09 +00:00
17 lines
283 B
TypeScript
17 lines
283 B
TypeScript
declare namespace IScaffold {
|
|
|
|
export interface IConfig {
|
|
name?: string
|
|
templates: string[]
|
|
output: string | ((path: string, base: string) => string)
|
|
locals?: any
|
|
}
|
|
|
|
export interface IFileRepr {
|
|
base: string
|
|
file: string
|
|
}
|
|
}
|
|
|
|
export default IScaffold
|