//#region public/universal/types.d.ts type ResultRecordBase = { /** * The unique identifier of the record. */ id: string; ronin: { /** * The timestamp of when the record was created. */ createdAt: T; /** * The ID of the user who created the record. */ createdBy: string | null; /** * The timestamp of the last time the record was updated. */ updatedAt: T; /** * The ID of the user who last updated the record. */ updatedBy: string | null; }; }; type ResultRecord = Record & ResultRecordBase; /** * Utility type to mark all Function.prototype methods as "deprecated" which * deranks them in the IDE suggestion popup. */ interface ReducedFunction { /** * @deprecated */ name: any; /** * @deprecated */ length: never; /** * @deprecated */ apply: never; /** * @deprecated */ call: never; /** * @deprecated */ bind: never; /** * @deprecated */ toString: never; /** * @deprecated */ caller: never; /** * @deprecated */ prototype: never; /** * @deprecated */ arguments: never; /** * @deprecated */ unify: never; } //#endregion export { ResultRecord as n, ReducedFunction as t };