UNPKG

275 BTypeScriptView Raw
1declare module '@ember/debug/lib/assert' {
2 export interface AssertFunc {
3 (desc: string, condition: unknown): asserts condition;
4 (desc: string): never;
5 }
6 export let assert: AssertFunc;
7 export function setAssert(implementation: typeof assert): typeof assert;
8}