import { Feature } from 'oak-frontend-base'; export default class Sample extends Feature { get(params) { throw new Error('Method not implemented.'); } action(action) { throw new Error('Method not implemented.'); } cache; constructor(cache) { super(); this.cache = cache; } }