declare module "@extra-array/tail" { /** * Gets values except first. * @param x an array */ declare function tail(x: T[]): T[]; export = tail; //# sourceMappingURL=tail.d.ts.map}