UNPKG

kysely

Version:
12 lines (11 loc) 293 B
/// <reference types="./prevent-await.d.ts" /> export function preventAwait(clazz, message) { Object.defineProperties(clazz.prototype, { then: { enumerable: false, value: () => { throw new Error(message); }, }, }); }