UNPKG

445 BTypeScriptView Raw
1export declare const FrontendIdProvider: unique symbol;
2/**
3 * A FrontendIdProvider computes an id for an instance of the front end that may be reconnected to a back end
4 * connection context.
5 */
6export interface FrontendIdProvider {
7 getId(): string;
8}
9export declare class BrowserFrontendIdProvider implements FrontendIdProvider {
10 protected readonly id: string;
11 getId(): string;
12}
13//# sourceMappingURL=frontend-id-provider.d.ts.map
\No newline at end of file