UNPKG

@flexbase/openapi-generator

Version:
9 lines (8 loc) 349 B
declare global { interface Array<T> { unique<K extends keyof T>(selector: K | ((t: T) => T[K])): Array<T>; cast<U extends T>(): Array<U>; deleteProperties<K extends keyof T>(...properties: K[]): Array<Omit<T, K>>; } } export declare const joinNonEmpty: (separator: string | undefined, ...values: string[]) => string;