|
4 | 4 |
|
5 | 5 | ```ts
|
6 | 6 |
|
7 |
| -import { EventEmitter } from 'events'; |
8 |
| -import { FluidObject } from '@fluidframework/core-interfaces'; |
9 |
| -import { IAnyDriverError } from '@fluidframework/driver-definitions'; |
10 |
| -import { IClient } from '@fluidframework/protocol-definitions'; |
11 |
| -import { IClientConfiguration } from '@fluidframework/protocol-definitions'; |
12 |
| -import { IClientDetails } from '@fluidframework/protocol-definitions'; |
13 |
| -import { IDisposable } from '@fluidframework/core-interfaces'; |
14 |
| -import { IDocumentMessage } from '@fluidframework/protocol-definitions'; |
15 |
| -import { IDocumentStorageService } from '@fluidframework/driver-definitions'; |
| 7 | +import type { EventEmitter } from 'events'; |
| 8 | +import type { FluidObject } from '@fluidframework/core-interfaces'; |
| 9 | +import type { IAnyDriverError } from '@fluidframework/driver-definitions'; |
| 10 | +import type { IClient } from '@fluidframework/protocol-definitions'; |
| 11 | +import type { IClientConfiguration } from '@fluidframework/protocol-definitions'; |
| 12 | +import type { IClientDetails } from '@fluidframework/protocol-definitions'; |
| 13 | +import type { IDisposable } from '@fluidframework/core-interfaces'; |
| 14 | +import type { IDocumentMessage } from '@fluidframework/protocol-definitions'; |
| 15 | +import type { IDocumentStorageService } from '@fluidframework/driver-definitions'; |
16 | 16 | import { IErrorBase } from '@fluidframework/core-interfaces';
|
17 |
| -import { IErrorEvent } from '@fluidframework/core-interfaces'; |
18 |
| -import { IEvent } from '@fluidframework/core-interfaces'; |
19 |
| -import { IEventProvider } from '@fluidframework/core-interfaces'; |
| 17 | +import type { IErrorEvent } from '@fluidframework/core-interfaces'; |
| 18 | +import type { IEvent } from '@fluidframework/core-interfaces'; |
| 19 | +import type { IEventProvider } from '@fluidframework/core-interfaces'; |
20 | 20 | import { IGenericError } from '@fluidframework/core-interfaces';
|
21 |
| -import { IQuorumClients } from '@fluidframework/protocol-definitions'; |
22 |
| -import { IRequest } from '@fluidframework/core-interfaces'; |
23 |
| -import { IResolvedUrl } from '@fluidframework/driver-definitions'; |
24 |
| -import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions'; |
25 |
| -import { ISequencedProposal } from '@fluidframework/protocol-definitions'; |
26 |
| -import { ISignalMessage } from '@fluidframework/protocol-definitions'; |
27 |
| -import { ISnapshot } from '@fluidframework/driver-definitions'; |
28 |
| -import { ISnapshotTree } from '@fluidframework/protocol-definitions'; |
29 |
| -import { ISummaryContent } from '@fluidframework/protocol-definitions'; |
30 |
| -import { ISummaryTree } from '@fluidframework/protocol-definitions'; |
31 |
| -import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces'; |
| 21 | +import type { IQuorumClients } from '@fluidframework/protocol-definitions'; |
| 22 | +import type { IRequest } from '@fluidframework/core-interfaces'; |
| 23 | +import type { IResolvedUrl } from '@fluidframework/driver-definitions'; |
| 24 | +import type { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions'; |
| 25 | +import type { ISequencedProposal } from '@fluidframework/protocol-definitions'; |
| 26 | +import type { ISignalMessage } from '@fluidframework/protocol-definitions'; |
| 27 | +import type { ISnapshot } from '@fluidframework/driver-definitions'; |
| 28 | +import type { ISnapshotTree } from '@fluidframework/protocol-definitions'; |
| 29 | +import type { ISummaryContent } from '@fluidframework/protocol-definitions'; |
| 30 | +import type { ISummaryTree } from '@fluidframework/protocol-definitions'; |
| 31 | +import type { ITelemetryBaseLogger } from '@fluidframework/core-interfaces'; |
32 | 32 | import { IThrottlingWarning } from '@fluidframework/core-interfaces';
|
33 |
| -import { ITokenClaims } from '@fluidframework/protocol-definitions'; |
| 33 | +import type { ITokenClaims } from '@fluidframework/protocol-definitions'; |
34 | 34 | import { IUsageError } from '@fluidframework/core-interfaces';
|
35 |
| -import { IVersion } from '@fluidframework/protocol-definitions'; |
36 |
| -import { MessageType } from '@fluidframework/protocol-definitions'; |
| 35 | +import type { IVersion } from '@fluidframework/protocol-definitions'; |
| 36 | +import type { MessageType } from '@fluidframework/protocol-definitions'; |
37 | 37 |
|
38 | 38 | // @public
|
39 | 39 | export enum AttachState {
|
|
0 commit comments