UNPKG

@veecode-platform/safira-cli

Version:

Generate a microservice project from your spec.

7 lines (6 loc) 240 B
export declare class ArrayUtils { static removeDuplicates<T>(array: T[]): T[]; static removeItemsFromArray<T>(array: T[], toRemove: T[]): T[]; static clone<T>(array: T[]): T[]; static isNullOrEmpty(array: any[]): boolean; }