aboutsummaryrefslogtreecommitdiff
path: root/static/vevent.ts
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2021-12-10 03:04:34 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2021-12-10 03:04:34 +0100
commit457ab3301782e4e91334961208c5e4bbde95987d (patch)
tree4055224de0136a25d0ce748c2adf10f2f5986d47 /static/vevent.ts
parentFlip static/.gitignore. (diff)
downloadcalp-457ab3301782e4e91334961208c5e4bbde95987d.tar.gz
calp-457ab3301782e4e91334961208c5e4bbde95987d.tar.xz
Add various type specifiers.
Diffstat (limited to 'static/vevent.ts')
-rw-r--r--static/vevent.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/static/vevent.ts b/static/vevent.ts
index 994c9425..cee26727 100644
--- a/static/vevent.ts
+++ b/static/vevent.ts
@@ -1,4 +1,4 @@
-import { uid, ical_type, valid_input_types, JCal, JCalProperty, ChangeLogEntry } from './types'
+import { ical_type, valid_input_types, JCal, JCalProperty, ChangeLogEntry } from './types'
import { parseDate } from './lib'
export {
@@ -91,7 +91,7 @@ All "live" calendar data in the frontend should live in an object of this type.
class VEvent {
/* Calendar properties */
- properties: Map<string, VEventValue | VEventValue[]>
+ private properties: Map<string, VEventValue | VEventValue[]>
/* Children (such as alarms for events) */
components: VEvent[]
@@ -164,7 +164,7 @@ class VEvent {
return this.properties.keys()
}
- __setPropertyInternal(key: string, value: any, type?: ical_type) {
+ private setPropertyInternal(key: string, value: any, type?: ical_type) {
function resolve_type(key: string, type?: ical_type): ical_type {
if (type) {
return type;
@@ -223,7 +223,7 @@ class VEvent {
setProperty(key: string, value: any, type?: ical_type): void;
setProperty(key: string, value: any, type?: ical_type) {
- this.__setPropertyInternal(key, value, type);
+ this.setPropertyInternal(key, value, type);
for (let el of this.registered) {
el.redraw(this);
@@ -232,7 +232,7 @@ class VEvent {
setProperties(pairs: [string, any, ical_type?][]) {
for (let pair of pairs) {
- this.__setPropertyInternal(...pair);
+ this.setPropertyInternal(...pair);
}
for (let el of this.registered) {
el.redraw(this);