mirror of
https://github.com/makeplane/plane.git
synced 2026-02-25 04:35:21 +01:00
9 lines
292 B
TypeScript
9 lines
292 B
TypeScript
import { BaseAnalyticsStore, IBaseAnalyticsStore } from "@/store/analytics.store";
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
export interface IAnalyticsStore extends IBaseAnalyticsStore {
|
|
//observables
|
|
}
|
|
|
|
export class AnalyticsStore extends BaseAnalyticsStore {}
|