mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
11 lines
197 B
TypeScript
11 lines
197 B
TypeScript
import shaca from "../shaca.js";
|
|
import Shaca from "../shaca-interface.js";
|
|
|
|
class AbstractShacaEntity {
|
|
get shaca(): Shaca {
|
|
return shaca;
|
|
}
|
|
}
|
|
|
|
export default AbstractShacaEntity;
|