Files
2026-07-26 18:25:37 +09:00

30 lines
572 B
JavaScript

import Chart from "../core.js";
import { name, schema } from "./entities/test-intersection.js";
/**
* For testing
*/ export default class TestIntersectionChart extends Chart {
constructor(){
super(name, schema);
}
async tickMajor() {
return {};
}
async tickMinor() {
return {};
}
async addA(key) {
await this.commit({
a: [
key
]
});
}
async addB(key) {
await this.commit({
b: [
key
]
});
}
}