UNPKG

@finsweet/ts-utils

Version:

Typescript utils for custom Webflow projects.

7 lines (6 loc) 108 B
/** * Defines a typed object entry */ export type Entry<T> = { [K in keyof T]: [K, T[K]]; }[keyof T];