File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 16
16
*/
17
17
18
18
import type { Server } from '@modelcontextprotocol/sdk/server/index.js' ;
19
- import type { Config } from './config' ;
20
- import type { Transport } from '@modelcontextprotocol/sdk/shared/transport.js' ;
19
+ import type { Config } from './config.js' ;
21
20
import type { BrowserContext } from 'playwright' ;
22
21
23
22
export type Connection = {
24
23
server : Server ;
25
- connect ( transport : Transport ) : Promise < void > ;
26
24
close ( ) : Promise < void > ;
27
25
} ;
28
26
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- import { Connection , createConnection as createConnectionImpl } from './connection.js' ;
17
+ import { createConnection as createConnectionImpl } from './connection.js' ;
18
+ import type { Connection } from '../index.js' ;
18
19
import { resolveConfig } from './config.js' ;
19
20
import { contextFactory } from './browserContextFactory.js' ;
20
21
You can’t perform that action at this time.
0 commit comments