source: node_modules/ts-toolbelt/out/List/LastKey.d.ts

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 270 bytes
Line 
1import { Length } from './Length';
2import { Tail } from './Tail';
3import { List } from './List';
4/**
5 * Get the last index of `L`
6 * @param L to get from
7 * @returns `number`
8 * @example
9 * ```ts
10 * ```
11 */
12export declare type LastKey<L extends List> = Length<Tail<L>>;
Note: See TracBrowser for help on using the repository browser.