diff options
author | bob <bcz@cs.brown.edu> | 2019-08-13 15:42:05 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-08-13 15:42:05 -0400 |
commit | afec8d91ec6de13de33e2a31c987727b4cc7101d (patch) | |
tree | 95fd2f51ecd2cc9a31b4e868c356bb52dfb85488 /src/new_fields/Types.ts | |
parent | 73dbd95e2f70bec212d766b2c6545fe59227b82a (diff) |
changes to fix stacking layouts used with templates. rearrangement of menu options.
Diffstat (limited to 'src/new_fields/Types.ts')
-rw-r--r-- | src/new_fields/Types.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/new_fields/Types.ts b/src/new_fields/Types.ts index 09cbff25e..0ca35fab2 100644 --- a/src/new_fields/Types.ts +++ b/src/new_fields/Types.ts @@ -2,6 +2,7 @@ import { Field, Opt, FieldResult, Doc } from "./Doc"; import { List } from "./List"; import { RefField } from "./RefField"; import { DateField } from "./DateField"; +import { ScriptField } from "./ScriptField"; export type ToType<T extends InterfaceValue> = T extends "string" ? string : @@ -86,6 +87,9 @@ export function BoolCast(field: FieldResult, defaultVal: boolean | null = false) export function DateCast(field: FieldResult) { return Cast(field, DateField, null); } +export function ScriptCast(field: FieldResult) { + return Cast(field, ScriptField, null); +} type WithoutList<T extends Field> = T extends List<infer R> ? (R extends RefField ? (R | Promise<R>)[] : R[]) : T; |