- Move most GUI related code to /presentation - Move components to /components (separate from bootstrap and style) - Move shared components helpers to /components/shared - Rename Bootstrapping to bootstrapping to enforce same naming convention in /presentation
8 lines
147 B
TypeScript
8 lines
147 B
TypeScript
import { VueConstructor } from 'vue';
|
|
|
|
export interface IVueBootstrapper {
|
|
bootstrap(vue: VueConstructor): void;
|
|
}
|
|
|
|
export { VueConstructor };
|