- 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>
16 lines
440 B
TypeScript
16 lines
440 B
TypeScript
export function diff(as: Array<string>, bs: Array<string>): Array<{
|
|
index: number;
|
|
remove: Array<string>;
|
|
insert: Array<string>;
|
|
}>;
|
|
export function diffSplitBy(a: string, b: string, _regexp: RegExp | string): {
|
|
index: number;
|
|
remove: string;
|
|
insert: string;
|
|
}[];
|
|
export function diffAuto(a: string, b: string): {
|
|
insert: string;
|
|
remove: string;
|
|
index: number;
|
|
}[];
|
|
//# sourceMappingURL=patience.d.ts.map
|