@mrmoree/base
Version:
The set of base classes for RD Components for the web
23 lines (22 loc) • 389 B
JavaScript
export class RWFoundation {
constructor(adapter = {}) {
this.adapter_ = adapter;
}
static get cssClasses() {
return {};
}
static get strings() {
return {};
}
static get numbers() {
return {};
}
static get defaultAdapter() {
return {};
}
init() {
}
destroy() {
}
}
export default RWFoundation;