Files
privacy.sexy/src/presentation/Bootstrapping/IVueBootstrapper.ts
undergroundwires 4e7f244190 Initial commit
2019-12-31 16:23:45 +01:00

8 lines
147 B
TypeScript

import { VueConstructor } from 'vue';
export interface IVueBootstrapper {
bootstrap(vue: VueConstructor): void;
}
export { VueConstructor };