/** * Created by Ivo Meißner on 10.09.17. * * @flow */ import AdmZip from 'adm-zip'; interface IPackOptions { runtimeSources?: boolean; } declare function pack(root: string, options?: IPackOptions): Promise; export default pack;