UNPKG

485 BTypeScriptView Raw
1import { ViewedStatisticType } from '../extensibility';
2export declare module Statistics {
3 interface IViewedStatisticUpdateInfo {
4 objectIds?: Array<string>;
5 lastViewed?: Date;
6 lastRead?: Date;
7 recentSiteUrl?: string;
8 recentSiteTemplate?: string;
9 viewedStatisticType?: ViewedStatisticType;
10 }
11 interface IStatisticsProviderSetting {
12 analyticScript?: string;
13 updatePageViewScript?: string;
14 }
15}