( ...args: ConstructorParameters<typeof SlowEditor> )
| 1427 | } |
| 1428 | |
| 1429 | public static async create( ...args: ConstructorParameters<typeof SlowEditor> ) { |
| 1430 | await deferInitialization.promise; |
| 1431 | |
| 1432 | return new SlowEditor( ...args ); |
| 1433 | } |
| 1434 | } |
| 1435 | |
| 1436 | const MockSlowEditor = SlowEditor as any; |