/** * asserts that an object has a uuid */ export type HasUuid = T & { uuid: string; }; /** * checks whether not an object that may have a uuid does have the uuid, at runtime */ export declare const hasUuid: (obj: T) => obj is HasUuid;