From 568b04913617facd4f0d8d0f646ef13caf664d87 Mon Sep 17 00:00:00 2001 From: SiRanWeb Date: Sat, 29 Oct 2022 23:43:09 +0300 Subject: [PATCH] update AnyASObject type --- src/common/common.types.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/common/common.types.ts b/src/common/common.types.ts index 7cae212..fa40477 100644 --- a/src/common/common.types.ts +++ b/src/common/common.types.ts @@ -45,12 +45,12 @@ export type ToValue = string | AnyASObject | Link; export type BtoValue = string | AnyASObject | Link; export type CcValue = string | AnyASObject | Link; export type BccValue = string | AnyASObject | Link; -export type GeneratorValue = string | ASObject | Link; +export type GeneratorValue = string | AnyASObject | Link; export type ObjectValue = string | AnyASObject | Link; export type AttributedToValue = string | AnyASObject | Link | Mention; export type TagValue = string | AnyASObject | Link | Mention; -export type ActorValue = string | ASObject | Link; -export type TargetValue = string | ASObject | Link; -export type ResultValue = string | ASObject | Link; -export type OriginValue = string | ASObject | Link; -export type InstrumentValue = string | ASObject | Link; \ No newline at end of file +export type ActorValue = string | AnyASObject | Link; +export type TargetValue = string | AnyASObject | Link; +export type ResultValue = string | AnyASObject | Link; +export type OriginValue = string | AnyASObject | Link; +export type InstrumentValue = string | AnyASObject | Link; \ No newline at end of file