blob: 5c0bbbb0592142f82548eabf44bbdd17a9a11c15 [file] [log] [blame]
declare module '@weex-cli/generator' {
export interface Metadate {
[propName: string]: any
}
export interface CloneOption {
cache: boolean
}
export function generator(source: string, dest: string, metadata: Metadate): Promise<boolean>
export function clone(templateUrl: string, target?: string, option?: CloneOption): Promise<string>
}