Fix type for Lovefield RawForeignKeySpec object

Currently the RawForeignKeySpec.timing type is set to lf.ConstraintAction. After checking the test in https://github.com/google/lovefield/blob/master/tests/schema/builder_test.js#L49 I confirmed that it should be lf.ConstraintTiming instead.
This commit is contained in:
Matt Langston
2016-06-25 18:17:00 -05:00
parent 73110d92bd
commit e91b6b762b

View File

@@ -188,7 +188,7 @@ declare namespace lf {
local: string
ref: string
action: lf.ConstraintAction
timing: lf.ConstraintAction
timing: lf.ConstraintTiming
}
export interface TableBuilder {