Skip to content

Commit c52f221

Browse files
committed
add a version string to SpaceEntryPoints
1 parent 85a8231 commit c52f221

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/spaces/SpaceEntryPoint.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
import { MutableReference } from 'data/collections';
22

33
interface SpaceEntryPoint {
4+
45
getName(): MutableReference<string>|string|undefined;
6+
getVersion(): string;
7+
58
startSync(): Promise<void>;
69
stopSync(): Promise<void>;
10+
711
}
812

913
export { SpaceEntryPoint }

0 commit comments

Comments
 (0)