Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
chain-able-deps / dist / typings / util / concat.d.ts
Size: Mime:
export interface Concat<Type = any> extends Function {
    (a: string, b: string): string;
    (a: Type[], b: Type[]): Type[];
    (a: string, b: Type[]): Type[];
    (a: Type[], b: string): Type[];
    (a: Type[] | string, b: Type[] | string): Type[] | string;
}
declare const _default: Concat<any>;
export default _default;