aboutsummaryrefslogtreecommitdiff
path: root/src/new_fields/List.ts
diff options
context:
space:
mode:
authorTyler Schicke <tyler_schicke@brown.edu>2019-04-23 01:05:12 -0400
committerTyler Schicke <tyler_schicke@brown.edu>2019-04-23 01:05:12 -0400
commit5ffb2f404a6a3da851c0fe7318b73f5c7723c3d7 (patch)
tree8838a7123ff82d73924e7b1855bab43aa7e59f92 /src/new_fields/List.ts
parent27b514747188f12e0b0eeeb124576c556316923d (diff)
Did most of Documents and some other stuff
Diffstat (limited to 'src/new_fields/List.ts')
-rw-r--r--src/new_fields/List.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/new_fields/List.ts b/src/new_fields/List.ts
index f3ec9e2c5..f01ac210a 100644
--- a/src/new_fields/List.ts
+++ b/src/new_fields/List.ts
@@ -33,4 +33,4 @@ class ListImpl<T extends Field> extends ObjectField {
private [Self] = this;
}
export type List<T extends Field> = ListImpl<T> & T[];
-export const List: { new <T extends Field>(): List<T> } = ListImpl as any; \ No newline at end of file
+export const List: { new <T extends Field>(fields?: T[]): List<T> } = ListImpl as any; \ No newline at end of file