10 lines
231 B
TypeScript
10 lines
231 B
TypeScript
export { UiMessage, UiStore } from "./UiStore";
|
|
export * from "./reactContext";
|
|
export { ClientState as StateBase } from "./ClientState";
|
|
|
|
import ClientState from "./ClientState";
|
|
|
|
|
|
export class WebApiState extends ClientState {
|
|
}
|