mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-10-22 23:32:01 +08: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;
|