status => stats
This commit is contained in:
20
dist/stats.d.ts
vendored
Normal file
20
dist/stats.d.ts
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
export declare const StatsComponent: {
|
||||
readonly HA_DESK_POSITION: "ha_desk_position";
|
||||
readonly HA_TEMP: "ha_temp";
|
||||
readonly TIDAL_CURRENT: "tidal_current";
|
||||
readonly GRIST_PERSONAL_GOALS: "grist_personal_goals";
|
||||
};
|
||||
export type StatsComponentName = (typeof StatsComponent)[keyof typeof StatsComponent];
|
||||
export type ComponentUpdate = {
|
||||
component: StatsComponentName;
|
||||
data: unknown;
|
||||
};
|
||||
export type StepRow = {
|
||||
year: string;
|
||||
steps: number;
|
||||
};
|
||||
export declare function createComponentUpdate(component: StatsComponentName, data: unknown): {
|
||||
component: StatsComponentName;
|
||||
data: unknown;
|
||||
};
|
||||
//# sourceMappingURL=stats.d.ts.map
|
||||
Reference in New Issue
Block a user