LKT Vue Kernel
npm install lkt-vue-kernelIn this package are located the interfaces used by lkt-web-tech project.
This interface polyfills the traditional Javascript object to Typescript.
``typescript
import {LktObject} from "lkt-ts-interfaces";
const myObject: LktObject = {};
// With this interface, you can add props dynamically:
const props = ['lorem', 'ipsum'];
props.forEach(prop => {myObject[prop] = prop});
// Or like this:
myObject.may = '...the force be with you!'
``