Using `Option.none` with `table` Attribute in TypeScript Interface

EDIT: Yes I'm dumb. Option.none is a function, not a value.

I'm being dumb somehow:

export interface TableJoins {
  table: Option.Option<AliasedTable>
  joins: TableJoin[]
}


How do I use Option.none with the table attribute without making tsc unhappy?
Was this page helpful?