- Consolidated duplicate UndoManagers to single instance - Fixed connection promise to only resolve on 'connected' status - Fixed WebSocketProvider import (WebsocketProvider) - Added proper doc.destroy() cleanup - Renamed isPresenceInitialized property to avoid conflict Co-Authored-By: Paperclip <noreply@paperclip.ing>
12 lines
275 B
TypeScript
12 lines
275 B
TypeScript
type AssertionError<T = {}> = Error & T & {
|
|
showDiff: boolean;
|
|
};
|
|
|
|
interface AssertionErrorConstructor {
|
|
new<T = {}>(message: string, props?: T, ssf?: Function): AssertionError<T>;
|
|
}
|
|
|
|
declare const AssertionError: AssertionErrorConstructor;
|
|
|
|
export = AssertionError;
|