mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 17:11:17 +00:00
Rename all references across the codebase: package names, imports, source IDs, directory names, docs, and configs. Co-authored-by: Ona <no-reply@ona.com>
14 lines
320 B
TypeScript
14 lines
320 B
TypeScript
import type { ContextKey } from "@aelis/core"
|
|
|
|
import { contextKey } from "@aelis/core"
|
|
|
|
export interface NextEvent {
|
|
title: string
|
|
startTime: Date
|
|
endTime: Date
|
|
minutesUntilStart: number
|
|
location: string | null
|
|
}
|
|
|
|
export const NextEventKey: ContextKey<NextEvent> = contextKey("aelis.google-calendar", "nextEvent")
|