UNPKG

235 BPlain TextView Raw
1
2
3
4/** Common interface for Block and Realm */
5export interface BaseObj {
6 // This is the vdev.system
7 system: string;
8 __version__: string;
9
10 /** imageTag to be used (with the starting ':' (default to "latest") */
11 imageTag: string;
12}
\No newline at end of file