UNPKG

@thisisagile/easy

Version:

Straightforward library for building domain-driven microservice architectures

5 lines (4 loc) 121 B
export type Indexed<T> = T & { index: number; }; export declare const isIndexed: <T>(u: unknown) => u is Indexed<T>;